/* Importação das fontes Lovelo */
@font-face {
    font-family: 'Lovelo';
    src: url('./fonts/Lovelo%20Black.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Lovelo';
    src: url('./fonts/Lovelo%20Line%20Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lovelo';
    src: url('./fonts/Lovelo%20Line%20Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Variáveis de cores modernas - Nova Paleta EDMX */
:root {
    --primary-brand: #005B9E;
    --primary-hover: #004a85;
    --secondary-brand: #00A293;
    --accent-olive: #B1B73D;
    --accent-olive-light: rgba(177, 183, 61, 0.1);
    --background-primary: #0F1A38;
    --background-secondary: #1a2951;
    --background-accent: #2c3e5a;
    --background-card: #34465f;
    --text-primary: #ffffff;
    --text-secondary: #D4D2D2;
    --text-muted: #a8a6a6;
    --border-light: #4a5c75;
    --border-medium: #5e7291;
    --border-accent: #005B9E;
    --shadow-sm: 0 1px 2px 0 rgba(15, 26, 56, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(15, 26, 56, 0.5), 0 2px 4px -1px rgba(15, 26, 56, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(15, 26, 56, 0.6), 0 4px 6px -2px rgba(15, 26, 56, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(15, 26, 56, 0.7), 0 10px 10px -5px rgba(15, 26, 56, 0.6);
    --shadow-glow: 0 0 20px rgba(0, 91, 158, 0.2);
    --shadow-glow-hover: 0 0 30px rgba(0, 91, 158, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Header */
.header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--shadow-glow));
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-brand), var(--primary-hover));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.dot {
    color: var(--primary-brand);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-brand);
    background-color: var(--background-accent);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 91, 158, 0.08) 0%, rgba(0, 162, 147, 0.08) 100%);
    border-radius: 0 0 0 200px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text .cta-button {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-brand);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-brand), var(--secondary-brand));
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    min-width: 200px;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-hover);
    background: linear-gradient(135deg, var(--primary-hover), var(--accent-olive));
}

.placeholder-image {
    background: linear-gradient(135deg, var(--background-card), var(--background-accent));
    border-radius: var(--radius-xl);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.125rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 91, 158, 0.1) 0%, rgba(0, 162, 147, 0.05) 70%, transparent 100%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Serviços Section */
.liberdade-section {
    padding: 120px 0;
    text-align: center;
    background: var(--background-secondary);
}

.liberdade-section h2 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.liberdade-section h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    max-width: 900px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.selection-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--background-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brand), var(--accent-olive));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-hover);
    border-color: var(--border-accent);
}

.card-image .placeholder-image {
    height: 240px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
}

.card h4 {
    font-family: 'Lovelo', sans-serif !important;
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
}

.card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--background-accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-primary) !important;
    background: linear-gradient(135deg, var(--background-accent), transparent);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-brand);
}

.inline-link {
    color: var(--primary-brand);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.inline-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-brand), var(--accent-olive));
    transition: width 0.3s ease;
}

.inline-link:hover::after {
    width: 100%;
}

/* Numbers Section */
.numbers-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--background-accent) 0%, var(--background-secondary) 100%);
    position: relative;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 91, 158, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 162, 147, 0.05) 0%, transparent 50%);
}

.numbers-section .container {
    position: relative;
    z-index: 1;
}

.numbers-section h2 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text-primary);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 100px;
}

.number-item {
    text-align: center;
    background: var(--background-card);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.number-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
}

.number-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-hover);
    border-color: var(--border-accent);
}

.number-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-brand), var(--accent-olive));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 91, 158, 0.3));
}

.number-value {
    font-family: 'Lovelo', sans-serif !important;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.number-description {
    font-family: 'Lovelo', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.newsletter-cta {
    max-width: 500px;
    margin: 0 auto;
    background: var(--background-card);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-light);
}

.newsletter-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--background-secondary);
}

.faq-section h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--background-card);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.faq-question {
    padding: 32px 40px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.faq-question:hover {
    background: var(--background-accent);
}

.faq-toggle {
    color: var(--primary-brand);
    font-size: 1.25rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--background-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
    background: var(--primary-brand);
    color: white;
}

.faq-answer {
    padding: 0 40px 32px;
    background: transparent;
    display: none;
    border-top: 1px solid var(--border-light);
}

.faq-item:first-child .faq-answer {
    display: block;
}

.faq-item:first-child .faq-toggle {
    background: var(--primary-brand);
    color: white;
}

.faq-answer p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 91, 158, 0.03) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-text h2 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-text h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 16px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.contact-form {
    background: var(--background-card);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
}

.form-group {
    margin-bottom: 32px;
}

.form-group:last-of-type {
    margin-bottom: 40px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--background-accent);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: var(--background-secondary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), var(--shadow-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-light);
    background: var(--background-accent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-brand);
    background-color: var(--background-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsivo - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header mobile */
    .header {
        padding: 12px 0;
    }

    .logo {
        font-family: 'Poppins', 'Montserrat', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .logo img {
        height: 36px !important;
    }

    .nav {
        display: none;
    }

    /* Hero mobile */
    .hero {
        padding: 80px 0 60px;
        margin-top: 60px;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-text {
        align-items: center;
        width: 100%;
    }

    .hero-text .cta-button {
        margin: 0 auto;
        min-width: 200px;
        max-width: 100%;
    }

    .hero h1,
    .hero h2,
    .hero h3,
    .hero h4,
    .number-value,
    .number-description {
        font-family: 'Lovelo', sans-serif !important;
    }

    .hero p,
    .hero div,
    .card p,
    .about-text p {
        font-family: 'Montserrat', sans-serif;
    }

    .nav a,
    .cta-button,
    .contact-social a,
    .footer-links a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
    }

    .hero-content > div:last-child {
        order: -1;
    }

    .placeholder-image {
        height: 300px;
    }

    /* Cards mobile - reduzir ícones */
    .card-image img {
        width: 120px !important;
        height: 120px !important;
    }

    /* Numbers mobile - reduzir ícones */
    .number-item img {
        width: 80px !important;
        height: 80px !important;
    }

    .number-value {
        font-family: 'Lovelo', sans-serif !important;
        font-size: 1.375rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    .number-description {
        font-family: 'Lovelo', sans-serif !important;
        font-size: 1.125rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    /* Sections mobile */
    .liberdade-section,
    .about-section,
    .numbers-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Contact mobile */
    .contact-social {
        align-items: center !important;
        min-width: auto !important;
        padding-right: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-social a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
        font-size: 1.25rem !important;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 16px;
    }

    .contact-social img {
        width: 48px !important;
        height: 48px !important;
    }

    /* Footer mobile */
    .footer-links a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
        font-size: 0.9375rem;
        font-weight: 500;
    }

    .contact-text h3,
    .liberdade-section h3 {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 500;
    }
}

@media (max-width: 1024px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Form mobile */
    .contact-form {
        padding: 32px 24px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group textarea {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 500;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.9375rem;
        padding: 12px 24px;
    }

    .newsletter-cta {
        padding: 24px 16px;
    }

    .newsletter-cta p {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.7;
    }

    /* Ajustes específicos para evitar overflow */
    .hero h1,
    .hero h2,
    .hero h3,
    .hero h4,
    .number-value,
    .number-description {
        font-family: 'Lovelo', sans-serif !important;
    }

    .hero p,
    .hero div,
    .card p,
    .about-text p,
    .company-values,
    .newsletter-cta p {
        font-family: 'Montserrat', sans-serif;
    }

    .nav a,
    .cta-button,
    .contact-social a,
    .footer-links a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
    }

    .hero h1 {
        font-family: 'Lovelo', sans-serif !important;
        font-size: clamp(1.875rem, 4vw, 2.25rem) !important;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.2;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero p {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.125rem !important;
        font-weight: 500;
        line-height: 1.7;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding: 0 12px;
    }

    .hero-text {
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .hero-text .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* Cards ainda menores em mobile */
    .card-image img {
        width: 80px !important;
        height: 80px !important;
    }

    /* Numbers ainda menores */
    .number-item img {
        width: 60px !important;
        height: 60px !important;
    }

    .number-value {
        font-family: 'Lovelo', sans-serif !important;
        font-size: 1.25rem !important;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    .number-description {
        font-family: 'Lovelo', sans-serif !important;
        font-size: 1rem !important;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    /* Contact section mobile */
    .contact-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 32px;
    }

    .contact-social {
        width: 100% !important;
        align-items: center !important;
        padding: 0 16px;
    }

    .contact-social a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
        font-size: 1.125rem !important;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 280px;
        gap: 12px;
        padding: 8px 16px;
        margin: 0 auto;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }

    .contact-social a:hover {
        background: var(--background-card);
        transform: translateY(-2px);
    }

    .contact-social img {
        width: 36px !important;
        height: 36px !important;
    }

    /* Valores section mobile */
    .valores-section div[style*="flex"] {
        flex-direction: column !important;
        text-align: center !important;
    }

    .company-values {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem !important;
        font-weight: 500;
        line-height: 1.7;
    }

    .contact-text h3,
    .liberdade-section h3 {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 500;
        font-size: 1.25rem;
    }
}

/* Animações e micro-interações */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .number-item,
    .cta-button {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .highlight::after {
        animation: slideIn 0.6s ease-out 0.3s both;
    }

    @keyframes slideIn {
        from {
            transform: scaleX(0);
        }
        to {
            transform: scaleX(1);
        }
    }
}

/* Estilos específicos para títulos */
h1, h2, h3, h4 {
    font-family: 'Lovelo', sans-serif !important;
    font-weight: 800;
    letter-spacing: 0.02em;
}

h1 { line-height: 1.2; }
h2 { line-height: 1.2; }
h3 { line-height: 1.3; }
h4 { line-height: 1.3; }

/* Estilos base para textos */
body, p, a, button, input, textarea {
    font-family: 'Montserrat', sans-serif;
}

/* Estilos para navegação e botões */
.nav a, .cta-button, .footer-links a {
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Números e estatísticas */
.number-value, .number-description {
    font-family: 'Lovelo', sans-serif !important;
}

@media (max-width: 768px) {
    .hero h1,
    .hero h2,
    .hero h3,
    .hero h4,
    .number-value,
    .number-description {
        font-family: 'Lovelo', sans-serif !important;
    }

    .hero p,
    .hero div,
    .card p,
    .about-text p {
        font-family: 'Montserrat', sans-serif;
    }

    .nav a,
    .cta-button,
    .contact-social a,
    .footer-links a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .hero h2,
    .hero h3,
    .hero h4,
    .number-value,
    .number-description {
        font-family: 'Lovelo', sans-serif !important;
    }

    .hero p,
    .hero div,
    .card p,
    .about-text p,
    .company-values,
    .newsletter-cta p {
        font-family: 'Montserrat', sans-serif;
    }

    .nav a,
    .cta-button,
    .contact-social a,
    .footer-links a {
        font-family: 'Poppins', 'Montserrat', sans-serif;
    }
}

.valores-content {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap;
}

.valores-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.valores-text {
    width: 100%;
    text-align: center;
}

.valores-text h2 {
    font-family: 'Lovelo', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-item {
    background: var(--background-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-brand);
}

.valor-item h4 {
    font-family: 'Lovelo', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.valor-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
} 