/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f5e6e8;
    --secondary-color: #fff5f7;
    --accent-color: #d4a5a5;
    --text-dark: #4a4a4a;
    --text-light: #6a6a6a;
    --whatsapp-green: #25D366;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}

/* Info Section */
.info {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.info-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.info-text.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.info-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    background: #22c55e;
}

.cta-button:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.cta-info {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Footer */
.footer {
    margin-top: 60px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    .logo {
        max-width: 250px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 45px 40px;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-text {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 20px 50px;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 60px;
    }

    .logo {
        max-width: 280px;
    }

    .title {
        font-size: 3rem;
    }

    .info-card {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 60px;
    }

    .info-title {
        font-size: 2rem;
    }

    .info-text {
        font-size: 1.15rem;
    }
}

/* Otimizações para telas muito pequenas */
@media (max-width: 380px) {
    .title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info-card {
        padding: 25px 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
    }
}
