:root {
    /* Refined PaxComp Palette */
    --bg-color: #011830;
    /* Slightly darker and deeper */
    --bg-light: #2A6390;
    --primary: #5AA7E1;
    --primary-glow: rgba(90, 167, 225, 0.5);
    --secondary: #FFFFFF;

    --text-main: #F8FAFC;
    --text-muted: #CBD5E1;

    --glass-bg: rgba(2, 24, 45, 0.4);
    --glass-border: rgba(90, 167, 225, 0.15);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Fonts */
    --font-heading: 'Bebas Kai', 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 6%;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
    letter-spacing: 1.5px;
    font-weight: normal;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 70ch;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: linear-gradient(145deg, rgba(42, 99, 144, 0.1) 0%, rgba(1, 24, 48, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(90, 167, 225, 0.4);
    background: linear-gradient(145deg, rgba(42, 99, 144, 0.15) 0%, rgba(1, 24, 48, 0.8) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(1, 24, 48, 0.85);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.brand-logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-name {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem;
    line-height: 0.9;
    color: var(--secondary);
    letter-spacing: 2px;
}

.sub-name {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 2.5px;
    margin-top: 2px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Base Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    color: #011830;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    border-radius: 50%;
}

.btn-primary:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-primary.glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary.large {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    white-space: normal;
    line-height: 1.4;
    min-width: 280px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(42, 99, 144, 0.4) 0%, var(--bg-color) 60%);
    z-index: -2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(90, 167, 225, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(90, 167, 225, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
}

.badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(90, 167, 225, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(90, 167, 225, 0);
    }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.sub-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Visual Mockup inside Hero */
.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glass-mockup {
    position: relative;
    width: 400px;
    background: linear-gradient(145deg, rgba(2, 33, 66, 0.85) 0%, rgba(1, 24, 48, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(135, 189, 235, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    display: flex;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #5AA7E1;
}

.mockup-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flight-status {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    color: #ff8a8a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 3.2rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    padding: 1.5rem 0;
}

.plane-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    transform: rotate(45deg);
    /* Optional slight tilt if it looks better */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.indemnity-alert {
    background: linear-gradient(135deg, var(--bg-light), var(--primary));
    color: white;
    padding: 1.4rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: 0 15px 30px rgba(42, 99, 144, 0.5);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

.glow-orb.secondary {
    background: var(--bg-light);
    width: 300px;
    transform: translate(-30%, -40%);
    opacity: 0.3;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

/* Base sections */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    margin: 0 auto;
    font-size: 1.2rem;
}

/* About Section */
.about-us {
    position: relative;
    background: linear-gradient(to bottom, var(--bg-color), #011E3A);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.about-content p {
    margin: 0 auto 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--primary);
    font-weight: 500;
}

/* Services */
.services {
    background: #011E3A;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: rgba(90, 167, 225, 0.08);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(90, 167, 225, 0.2);
    color: var(--primary);
    transition: var(--transition-smooth);
}

.glass-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #011830;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.glass-card h3 {
    font-size: 2.4rem;
}

/* Timeline/How it works */
.how-it-works {
    background: var(--bg-color);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(90, 167, 225, 0.3), transparent);
    z-index: 1;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    color: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.step:hover .step-num {
    background: var(--primary);
    color: #011830;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.step-content h4 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.05rem;
}

/* Testimonials / Social Proof */
.testimonials {
    background: linear-gradient(to bottom, var(--bg-color), #011E3A);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 3.5rem;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    color: var(--text-main);
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #011830;
    font-family: var(--font-body);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info h5 {
    font-size: 1.05rem;
    font-family: var(--font-body) !important;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.stars {
    color: #ffbd2e;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.flight-issue {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* CTA */
.cta-banner {
    position: relative;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvc3ZnPg==');
}

.cta-content {
    text-align: center;
    padding: 4.5rem 2rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(2, 24, 45, 0.8) 0%, rgba(42, 99, 144, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(90, 167, 225, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cta-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.contact-form {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.contact-form input,
.contact-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    flex: 1;
    min-width: 250px;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
    appearance: none;
    cursor: pointer;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select option {
    background: #01182b;
    color: white;
}

.contact-form select:invalid {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(90, 167, 225, 0.2);
}

.contact-form button {
    border-radius: 50px;
    white-space: nowrap;
}

.form-subtext {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    background: #000B18;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Scroll Revel Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 48, 0.85);
    /* Escurece o fundo e usa a cor da paleta */
    backdrop-filter: blur(8px);
    /* Deixa o fundo fosco */
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    /* Centraliza vertical/horizontalmente */
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 450px;
    width: 90%;
    text-align: center;
    padding: 3rem 2rem;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    /* Necessário para posicionar o botão X absoluto nele */
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.modal-icon {
    color: #4ade80;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.wpp-btn {
    background: #25D366;
    /* Cor oficial do WhatsApp */
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    margin-top: 1rem;
    width: 100%;
}

.wpp-btn:hover {
    background: #1faf53;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.6);
}

/* step-line tem função apenas decorativa via ::before — esconde o elemento vazio */
.step-line {
    display: none;
}

/* ── Tablet ───────────────────────────── */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .sub-text {
        text-align: center;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        left: 40px;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(90, 167, 225, 0.3), transparent);
    }

    .step {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        padding: 0;
    }

    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ── Mobile ───────────────────────────── */
@media (max-width: 768px) {
    .container {
        padding: 0 5%;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Navbar — mantém em uma linha */
    .navbar {
        padding: 0.9rem 0;
    }

    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .main-name {
        font-size: 1.8rem;
    }

    .sub-name {
        display: none;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .navbar .btn-primary {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        min-width: unset;
        white-space: nowrap;
    }

    /* Hero */
    .hero {
        padding: 6.5rem 0 3rem;
        min-height: unset;
    }

    .hero-visual {
        height: auto;
    }

    .glass-mockup {
        width: 100%;
        max-width: 300px;
    }

    /* Typography */
    h3 {
        font-size: 1.8rem;
    }

    /* About */
    .about-content {
        padding: 2rem 1.2rem;
    }

    .about-content p {
        font-size: 1.05rem;
    }

    /* Cards — 2 colunas no tablet */
    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .glass-card {
        padding: 1.8rem;
    }

    /* Timeline */
    .step-num {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        border-radius: 18px;
    }

    .timeline::before {
        left: 30px;
    }

    /* Form — empilha verticalmente */
    .cta-content {
        padding: 2.5rem 1.2rem;
    }

    .contact-form {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact-form input,
    .contact-form select {
        width: 100%;
        min-width: unset;
        flex: none;
    }

    .contact-form button {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ── Mobile pequeno (≤ 480px) ─────────── */
@media (max-width: 480px) {
    .container {
        padding: 0 4%;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 5.5rem 0 2.5rem;
    }

    /* Badge */
    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }

    /* Esconde o mockup decorativo para economizar espaço */
    .hero-visual {
        display: none;
    }

    /* Cards — coluna única */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials — coluna única */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Botão grande */
    .btn-primary.large {
        min-width: unset;
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .cta-content {
        padding: 2rem 1rem;
        border-radius: 16px;
    }

    /* Modal */
    .modal-content {
        padding: 2rem 1.2rem;
    }
}