/* ==========================================================================
   Salt Proteção Veicular - Premium CSS Stylesheet
   Theme: Elegant & LIGHT with Aggressive Commercial Accents (Orange/Gold Glow)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & Custom Properties (Inverted for Light Background)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Light Theme */
    --color-bg-dark: #ffffff;       /* Pure White Background */
    --color-bg-light-sec: #f8f9fa;  /* Light Neutral for Section Alternation */
    --color-bg-card: #ffffff;       /* Cards are White */
    --color-bg-card-hover: #ffffff;
    --color-border: #e5e7eb;        /* Soft Light Border */
    
    --color-primary-start: #e14f0d;
    --color-primary-end: #fbb03b;
    --gradient-primary: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
    --gradient-primary-glow: rgba(225, 79, 13, 0.2);
    
    --color-success: #2ec4b6;
    --color-danger: #e71d36;
    
    --color-text-primary: #12141c;   /* Dark Charcoal for Primary Text */
    --color-text-secondary: #5a6075; /* Gray for Paragraphs */
    --color-text-muted: #8b90a0;     /* Muted Gray */
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacings & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. Typography & Helper Utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

/* Sections Styling */
section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-dark);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    background: rgba(225, 79, 13, 0.08);
    color: var(--color-primary-start);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(225, 79, 13, 0.15);
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 18px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-start);
}

/* --------------------------------------------------------------------------
   4. Buttons & Form Controls
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--gradient-primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 79, 13, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}
.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--border-radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background-color: #f8f9fa;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-speed);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary-start);
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(225, 79, 13, 0.15);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-secondary);
    text-align: left;
}
.form-group-checkbox input {
    accent-color: var(--color-primary-start);
    width: 16px;
    height: 16px;
}

/* --------------------------------------------------------------------------
   5. Header & Glassmorphic Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s ease;
}

.header.scrolled .navbar-container {
    height: 70px;
}

/* Logo Sizes (Increased size!) */
.logo-img {
    height: 75px;
    width: auto;
    transition: height 0.4s ease;
}

.header.scrolled .logo-img {
    height: 55px;
}

.nav-menu {
    display: flex;
}

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

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Clean Light Vibe)
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(225, 79, 13, 0.06) 0%, rgba(255, 255, 255, 1) 60%),
                url('../assets/hero-car.png') no-repeat right 30% center / 50%;
    background-color: var(--color-bg-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.96) 45%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
}
.hero-subtitle strong {
    color: var(--color-text-primary);
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--color-text-primary);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
}

.hero-feature-item i {
    color: var(--color-primary-start);
    font-size: 20px;
}

.badge {
    background: rgba(225, 79, 13, 0.08);
    color: var(--color-primary-start);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(225, 79, 13, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

/* Capture Form in Hero */
.hero-form-wrapper {
    animation: fadeInUp 1.2s ease forwards;
}

.form-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.quote-disclaimer {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: left;
}

/* Decoration Bottom Wave */
.hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

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

.hero-bottom-wave .shape-fill {
    fill: var(--color-bg-light-sec);
}

/* --------------------------------------------------------------------------
   7. Benefícios Grid Section (Alternating Light background)
   -------------------------------------------------------------------------- */
.benefits-section {
    background-color: var(--color-bg-light-sec);
    border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 36px 28px;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) ease;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(225, 79, 13, 0.08);
    color: var(--color-primary-start);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: all var(--transition-speed) ease;
}

.benefit-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all var(--transition-speed) ease;
}


.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Hover Effects */
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 79, 13, 0.25);
    box-shadow: 0 12px 35px rgba(225, 79, 13, 0.08);
}

.benefit-card:hover::after {
    width: 100%;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 79, 13, 0.3);
    transform: scale(1.05) rotate(5deg);
}

/* --------------------------------------------------------------------------
   8. Comparativo Section
   -------------------------------------------------------------------------- */
.comparison-section {
    background-color: var(--color-bg-dark);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 48px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 28px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    background-color: #f8f9fa;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

.comparison-table td.feature-name {
    font-weight: 700;
}
.comparison-table td.feature-name i {
    color: var(--color-primary-start);
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
}

.highlight-column {
    background-color: rgba(225, 79, 13, 0.02);
    border-left: 2px solid rgba(225, 79, 13, 0.15);
    border-right: 2px solid rgba(225, 79, 13, 0.15);
}

th.highlight-column {
    background-color: rgba(225, 79, 13, 0.05) !important;
    color: var(--color-text-primary);
    font-size: 16px;
    border-bottom: 3px solid var(--color-primary-start);
}

.salt-benefit {
    color: var(--color-success);
    font-weight: 700;
}
.salt-benefit i {
    font-size: 18px;
    margin-right: 6px;
}

.insurance-drawback {
    color: var(--color-text-muted);
}
.insurance-drawback i {
    color: var(--color-danger);
    font-size: 18px;
    margin-right: 6px;
}

.comparison-cta {
    max-width: 600px;
    margin: 0 auto;
}
.comparison-cta p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   9. Seção de Cotação Rápida (Substituiu a calculadora)
   -------------------------------------------------------------------------- */
.quote-form-section {
    background-color: var(--color-bg-light-sec);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.quote-form-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.quote-form-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.full-width {
    grid-column: span 2;
}

.form-submit-row {
    text-align: center;
    margin-top: 10px;
}

.form-submit-row .quote-disclaimer {
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. Sobre a Salt Section
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 15px 30px rgba(225, 79, 13, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 150px;
    z-index: 2;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.about-content p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-start);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   11. FAQ (Perguntas Frequentes) Section
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-bg-light-sec);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    transition: all var(--transition-speed);
}

.faq-question i {
    color: var(--color-primary-start);
    font-size: 16px;
    transition: transform var(--transition-speed);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out, padding var(--transition-speed);
    padding: 0 24px;
    color: var(--color-text-secondary);
    font-size: 15px;
    border-top: 1px solid transparent;
}

/* Active FAQ styling */
.faq-item.active {
    border-color: rgba(225, 79, 13, 0.2);
    box-shadow: 0 8px 25px rgba(225, 79, 13, 0.05);
}

.faq-item.active .faq-question {
    color: var(--color-primary-start);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    border-top: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   12. Rodapé / Footer (MANTIDO ESCURO PARA CONTRASTE ELEGANTE)
   -------------------------------------------------------------------------- */
.footer {
    background-color: #0c0d12;
    border-top: 1px solid #1f2330;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Larger Footer Logo */
.footer-logo {
    height: 75px;
    margin-bottom: 24px;
}

.footer-desc {
    color: #a0a5b5;
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 380px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1f2330;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-speed);
}
.social-link:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gradient-primary-glow);
    border-color: transparent;
}

.footer-links-group h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #a0a5b5;
}
.footer-links a:hover {
    color: var(--color-primary-end);
    padding-left: 4px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    color: #a0a5b5;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-details li i {
    color: var(--color-primary-start);
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #1f2330;
    padding: 30px 0;
    background-color: #08090d;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 12px;
    color: #6b6f80;
}

/* --------------------------------------------------------------------------
   13. Floating Actions & Animations
   -------------------------------------------------------------------------- */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Pulsing CTA effect */
.pulse-button {
    animation: pulse-orange 2.5s infinite;
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 79, 13, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(225, 79, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 79, 13, 0);
    }
}

/* --------------------------------------------------------------------------
   14. Responsividade (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .hero-section {
        background-position: right 10% center;
        background-size: 50%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-section {
        background: var(--color-bg-dark);
        padding-top: 140px;
    }
    .hero-overlay {
        background: radial-gradient(circle at center, rgba(225, 79, 13, 0.04) 0%, rgba(255, 255, 255, 1) 80%);
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-features-list {
        align-items: center;
    }
    .form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-badge {
        right: -10px;
        bottom: -10px;
        padding: 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .social-links {
        justify-content: center;
    }
    .contact-details li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-title {
        font-size: 40px;
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--color-border);
        transition: left 0.4s ease;
        padding: 40px 24px;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
    .nav-item {
        font-size: 20px;
        width: 100%;
        display: block;
    }
    
    .nav-actions {
        margin-right: 15px;
    }
    #btn-nav-cta {
        display: none;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .quote-form-card {
        padding: 30px 20px;
    }
    .grid-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 26px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        padding: 24px;
    }
    .form-card {
        padding: 24px 16px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
