/* ==========================================================================
   Landing Page INKOR — Mobile-First Architecture
   Breakpoints: sm 480px | md 768px | lg 1024px | xl 1280px
   ========================================================================== */

/* --- Variáveis Principais e Temas (Apenas Modo Claro) --- */
:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --primary: #001A70;
    --primary-hover: #00114d;
    --primary-light: #e6ecff;
    --primary-light-hover: #ccd8ff;
    --accent-red: #f5333f;
    --accent-red-hover: #cc1a26;
    --accent-yellow: #fbc02d;
    --accent-green: #689f38;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.8);

    --text-main: #2c3e50;
    --text-title: #1a252f;
    --text-muted: #6c757d;
    --text-light: #ffffff;

    --border-color: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.4);
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-glow: none;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* base: mobile header height */
    --header-height: 56px;
}

@media (min-width: 768px) {
    :root {
        --header-height: 64px;
    }
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }
}

/* --- Reset de CSS --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Tipografia e Utilitários de Base --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-title);
    font-weight: 700;
    line-height: 1.25;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 26, 112, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}

@media (min-width: 480px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 480px) {
    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.light-bg {
    background-color: var(--bg-secondary);
}

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

/* --- Componentes Comuns --- */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .badge {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

.hero-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    margin-bottom: 24px;
}

.section-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.section-badges .section-badge {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 60px;
    }
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
    user-select: none;
    font-size: 0.9rem;
    gap: 8px;
    min-height: 44px;
}

@media (min-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-light);
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-title);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Cabeçalho e Navegação
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background-color var(--transition-normal), border-color var(--transition-normal), height var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 24px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 38px;
    }
}

/* Mobile: nav oculta */
.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    display: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

/* Desktop: nav visível */
@media (min-width: 768px) {
    .nav-menu {
        display: block;
    }

    .btn-nav {
        display: inline-flex;
    }
}

/* Botão Hamburger — visível apenas no mobile */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.mobile-toggle:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary);
}

.mobile-toggle .bar {
    width: 16px;
    height: 1.5px;
    background-color: var(--text-title);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* X animation — bars 1.5px tall, gap 5px → offset = gap + bar = 6.5px */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Overlay do Menu Mobile */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.mobile-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-title);
}

.mobile-item.btn {
    font-size: 1.1rem;
    margin-top: 15px;
    padding: 12px 35px;
}

/* ==========================================================================
   Seção Hero (Principal)
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 60px;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 120px;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.15;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-bottom: 36px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
        margin-bottom: 40px;
    }
}

.btn-hero {
    padding: 16px 32px;
}

.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.hero-img-main {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Badges Flutuantes — ocultos em mobile */
.floating-badge {
    display: none;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-glass);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

@media (min-width: 576px) {
    .floating-badge {
        display: flex;
        position: absolute;
    }
}

.badge-top {
    top: 30px;
    left: -10px;
}

@media (min-width: 1280px) {
    .badge-top {
        left: -30px;
    }
}

.badge-bottom {
    bottom: 40px;
    right: -20px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.85rem;
    color: var(--text-title);
    font-weight: 700;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animações */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-fill {
    fill: var(--bg-primary);
}

/* ==========================================================================
   Benefits / Value Proposition Section
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

@media (min-width: 1024px) {
    .benefit-card {
        padding: 40px 30px;
    }
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
}

.benefit-icon-wrapper.blue-theme  { background-color: rgba(0, 26, 112, 0.1);  color: var(--primary); }
.benefit-icon-wrapper.red-theme   { background-color: rgba(245, 51, 63, 0.1); color: var(--accent-red); }
.benefit-icon-wrapper.gold-theme  { background-color: rgba(251, 192, 45, 0.1);color: var(--accent-yellow); }
.benefit-icon-wrapper.green-theme { background-color: rgba(104, 159, 56, 0.1);color: var(--accent-green); }

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   Simplified Products Slider Section
   ========================================================================== */
.product-slider-wrapper {
    position: relative;
    padding: 0;
    max-width: 1100px;
    margin: 40px auto 0 auto;
}

@media (min-width: 1024px) {
    .product-slider-wrapper {
        padding: 0 60px;
    }
}

.product-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.product-slider-track {
    display: flex;
    width: 100%;
    transition: transform var(--transition-slow);
}

.product-slide {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0.3;
    transition: opacity var(--transition-normal);
    display: flex;
}

.product-slide.active {
    opacity: 1;
}

.product-slide-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-card);
    min-height: 300px;
    width: 100%;
}

@media (min-width: 1024px) {
    .product-slide-card {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 400px;
    }
}

.product-visual-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: none;
    transition: transform var(--transition-normal);
}

.product-slide-card:hover .product-visual-img {
    transform: scale(1.06) translateY(-6px);
}

.product-slide-visual {
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    max-height: 220px;
}

@media (min-width: 1024px) {
    .product-slide-visual {
        max-height: none;
    }
}

.product-slide-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-slide-info {
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .product-slide-info {
        padding: 48px;
    }
}

.product-slide-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

@media (min-width: 480px) {
    .product-slide-title {
        font-size: 2rem;
    }
}

.product-slide-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-specs-list {
    margin-bottom: 30px;
    width: 100%;
}

.product-specs-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--text-main);
}

.product-specs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.btn-product-slide {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Controles do Slider (Setas) — ocultos em mobile */
.slider-arrow {
    display: none;
}

@media (min-width: 1024px) {
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--text-title);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-md);
        z-index: 10;
        font-size: 1.1rem;
        font-weight: bold;
        transition: all var(--transition-fast);
    }

    .slider-arrow:hover {
        background-color: var(--primary);
        color: var(--text-light);
        border-color: var(--primary);
    }

    .prev-arrow { left: 0; }
    .next-arrow { right: 0; }
}

/* Pontos de Paginação (Dots) */
.product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.p-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.p-dot:hover {
    background-color: var(--text-muted);
}

.p-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   Seção de Confiança / Números
   ========================================================================== */
.trust-section {
    background-color: #001A70;
    color: var(--text-light);
    overflow: hidden;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .trust-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.trust-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 32px 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    display: inline-block;
}

.stat-plus, .stat-percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-left: -4px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 10px;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Seção de Captura de Leads (Formulário Padrão)
   ========================================================================== */
.standard-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 16px;
    margin-top: 0;
}

@media (min-width: 480px) {
    .standard-form-container {
        padding: 28px 20px;
    }
}

@media (min-width: 1024px) {
    .standard-form-container {
        padding: 48px;
        margin-top: 40px;
    }
}

.hero-form {
    margin-top: 0;
    padding: 24px 16px;
}

@media (min-width: 480px) {
    .hero-form {
        padding: 28px 20px;
    }
}

@media (min-width: 768px) {
    .hero-form {
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-form {
        padding: 40px;
    }
}

/* Cabeçalho do formulário */
.form-header {
    margin-bottom: 28px;
}

.form-badge {
    margin-bottom: 14px;
}

.form-title {
    font-size: 1.7rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-title);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.standard-lead-form {
    position: relative;
}

/* Grade dos Campos do Formulário */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.col-span-2 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
        margin-bottom: 26px;
    }

    .col-span-2 {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 7px;
}

/* font-size: 1rem evita zoom automático no iOS (threshold: 16px) */
.form-control {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-fast);
    min-height: 48px;
}

.form-control:hover {
    border-color: var(--text-muted);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 26, 112, 0.15);
}

.select-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.form-control.invalid {
    border-color: var(--accent-red);
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 4px;
}

.form-control.invalid + .error-msg {
    display: block;
}

/* Checkboxes de consentimento */
.standard-lead-form input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* Ações de Envio (Submit) */
.form-submit-row {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.btn-submit-standard {
    padding: 16px 40px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    min-height: 52px;
}

.btn-text-loading {
    display: none;
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary.loading .btn-text-normal {
    display: none;
}

.btn-primary.loading .btn-text-loading {
    display: inline-block;
}

/* Estado do Painel de Sucesso */
.wizard-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    animation: scaleIn var(--transition-normal);
}

.wizard-success-state.active {
    display: flex;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: rgba(104, 159, 56, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 24px;
    box-shadow: none;
    border: 2px solid rgba(104, 159, 56, 0.3);
}

.wizard-success-state h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.wizard-success-state p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 36px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.btn-whatsapp-direct {
    background-color: #25d366;
    color: #fff;
    box-shadow: none;
}

.btn-whatsapp-direct:hover {
    background-color: #20ba56;
    box-shadow: none;
}

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

/* ==========================================================================
   Seção de Perguntas Frequentes (FAQ)
   ========================================================================== */
.faq-accordion-group {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    color: var(--text-title);
    background: transparent;
    min-height: 56px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 18px 24px;
    }
}

.faq-arrow {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .faq-answer p {
        padding: 18px 24px;
    }
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.footer {
    background-color: #001A70;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 48px 0 32px 0;
}

@media (min-width: 1024px) {
    .footer-top {
        padding: 80px 0 48px 0;
    }
}

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

@media (min-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
        gap: 32px;
    }
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: inline-block;
    padding: 4px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-factories li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-factories strong {
    color: #ffffff;
    display: block;
    font-size: 0.85rem;
}

.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.contact-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: #001047;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding: 30px 0;
    }
}

.footer-bottom-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-meta-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   Scroll animations & Reveals
   ========================================================================== */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ==========================================================================
   Seção de Certificações
   ========================================================================== */
.certifications-section {
    background-color: var(--bg-secondary);
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
}

@media (min-width: 576px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.cert-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
    .cert-card {
        padding: 30px 24px;
    }
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cert-badge-img-container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

.cert-badge-img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

.cert-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-title);
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
