/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #01447c;
    --secondary-color: #61B60C;
    --primary-hover: #00569d;
    --secondary-hover: #71d210;
    --success-color: #00C853;
    --danger-color: #FF1744;
    --warning-color: #FFB300;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

.cta-button, .form-button, .model-cta, .calculator-cta, .final-cta-button {
    background: var(--primary-color);
}

.cta-button:hover, .form-button:hover, .model-cta:hover, .calculator-cta:hover, .final-cta-button:hover {
    background: var(--primary-hover);
}

.stat-number {
    color: var(--primary-color);
}

.form-title {
    color: var(--secondary-color);
}

.section-title {
    color: var(--secondary-color);
}

.timeline-marker {
    background: var(--primary-color);
}

.guarantee-icon {
    background: var(--primary-color);
}

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

.urgency-alert {
    background: var(--primary-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003057 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(180deg); }
}

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

.hero-logo {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-logo .logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-logo .lavpop-logo {
    height: 100px;
    width: auto;
}

.logo-by-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.by-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    font-style: italic;
}

.hero-logo .asec-logo {
    height: 32px;
    width: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight {
    margin-bottom: 20px;
}

.hero-highlight-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-title .highlight-percentage {
    color: white;
    font-weight: 900;
}

.hero-title .highlight-green {
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-title .highlight-white {
    color: white;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 15px;
    line-height: 1.6;
    color: white;
}

.hero-growth {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--secondary-color);
    white-space: nowrap;
}

.stat-number .value {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-number .unit {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
    line-height: 1;
    text-transform: none;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(97, 182, 12, 0.3);
}

.cta-button:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 182, 12, 0.4);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(97, 182, 12, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(97, 182, 12, 0.6);
    }
}

.disclaimer {
   
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Formulário Hero */
.hero-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.form-title i {
    color: var(--secondary-color);
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 40px 15px 45px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--text-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;   
   
}

.form-group select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666666" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 8l3 3 3-3" stroke="%23666666" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px 20px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Autocomplete Styles */
.autocomplete-container {
    position: relative;
}

.autocomplete-container input {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-color);
}

.autocomplete-container input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #D0D0D0;
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-lg);
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .autocomplete-list {
        max-height: 250px;
        z-index: 10000;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border-width: 1px;
    }
    
    .autocomplete-item {
        padding: 16px 15px;
        min-height: 48px; /* Facilita o toque no mobile */
    }
    
    .autocomplete-item .city-name {
        font-size: 1.05rem;
    }
    
    .autocomplete-item .city-uf {
        font-size: 0.9rem;
        padding: 3px 8px;
    }
    
    /* Melhora a área de toque */
    .autocomplete-item:active {
        background: #E8F4FD;
        transform: scale(0.98);
    }
}

.autocomplete-list.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.autocomplete-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 2, 59, 0.1);
}

.autocomplete-item {
    padding: 14px 15px;
    cursor: pointer;
    border-bottom: 1px solid #F0F0F0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
    background: #F0F4FF;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.autocomplete-item .city-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
    white-space: nowrap;
}

.autocomplete-item .city-name mark {
    white-space: nowrap;
}

.autocomplete-item .city-uf {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    background: #F5F5F5;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.autocomplete-item:hover .city-name,
.autocomplete-item.selected .city-name {
    color: var(--primary-color);
    font-weight: 700;
}

.autocomplete-item:hover .city-uf,
.autocomplete-item.selected .city-uf {
    background: var(--primary-color);
    color: white;
}

.autocomplete-loading {
    padding: 14px 15px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.autocomplete-no-results {
    padding: 14px 15px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.autocomplete-item mark {
    background-color: #FFF3CD;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
}

.autocomplete-list::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 3px;
}

.autocomplete-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.form-button {
    width: 100%;
    background: var(--success-color);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-button:hover {
    background: #00A843;
    transform: translateY(-2px);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Barra de Credibilidade */
.credibility-bar {
    background: var(--light-color);
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.credibility-swiper {
    overflow: hidden;
    padding: 0 20px;
}

.credibility-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 20px 10px;
    height: auto;
    transition: transform 0.3s ease;
}

.credibility-item:hover {
    transform: translateY(-5px);
}

.credibility-item img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.credibility-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.credibility-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    max-width: 150px;
}

/* Seção Problemas e Soluções */
.problems-solutions {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    text-align: center;
    padding: 30px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border: 2px solid #003057;
    transition: var(--transition);
    color: white;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 68, 124, 0.3);
    border-color: var(--secondary-color);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.solution-box {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--success-color);
}

.solution-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
    gap: 15px;
}

.solution-title i {
    color: var(--success-color);
}

.solution-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.solution-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-item span {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Modelos de Lojas */
.business-models {
    padding: 80px 0;
    background: var(--light-color);
}

/* Seção LavPop Modelo Expandida */
.lavpop-model-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
}

.model-hero {
    text-align: center;
    margin-bottom: 60px;
}

.model-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.model-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.model-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(97, 182, 12, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.model-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(1, 68, 124, 0.2);
}

.advantage-card .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #003057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    position: relative;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.financial-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003057 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.financial-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.financial-highlight .highlight-content {
    position: relative;
    z-index: 1;
}

.financial-highlight h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.financial-highlight .roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

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

.roi-stat .roi-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.roi-stat .roi-label {
    font-size: 1rem;
    opacity: 0.9;
}

.model-cta-section {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.model-cta-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.model-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.enhanced-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(97, 182, 12, 0.3);
}

.enhanced-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(97, 182, 12, 0.4);
    background: linear-gradient(135deg, #4a9008, var(--secondary-color));
}

/* Seção Eco-Friendly Melhorada */
.eco-friendly-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.eco-friendly-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(97, 182, 12, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.eco-friendly-content {
    position: relative;
    z-index: 1;
}

.eco-friendly-hero {
    text-align: center;
    margin-bottom: 60px;
}

.eco-friendly-hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.eco-friendly-hero h2::after {
    content: '🌱';
    font-size: 2rem;
    margin-left: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.eco-friendly-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.eco-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.eco-card {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), #4a9008);
}

.eco-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 60px rgba(97, 182, 12, 0.15);
}

.eco-card:nth-child(1) { animation-delay: 0.1s; }
.eco-card:nth-child(2) { animation-delay: 0.2s; }
.eco-card:nth-child(3) { animation-delay: 0.3s; }

.eco-icon-container {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(97, 182, 12, 0.3);
}

.eco-icon-container::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.eco-card:hover .eco-icon-container {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4a9008, var(--secondary-color));
}

.eco-icon-container i {
    font-size: 2.5rem;
    color: white;
}

.eco-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eco-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.eco-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.eco-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.eco-stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Seção Suporte ao Franqueado Melhorada */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 68, 124, 0.05) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
}

.support-content {
    position: relative;
    z-index: 1;
}

.support-hero {
    text-align: center;
    margin-bottom: 60px;
}

.support-hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.support-hero h2::after {
    content: '🤝';
    font-size: 2rem;
    margin-left: 15px;
    display: inline-block;
    animation: handshake 3s ease-in-out infinite;
}

@keyframes handshake {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.support-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(1, 68, 124, 0.15);
}

.support-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.support-card:nth-child(even) {
    animation-delay: 0.2s;
}

.support-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #003057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(1, 68, 124, 0.3);
}

.support-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.2; }
}

.support-card:hover .support-icon-wrapper {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
}

.support-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.support-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003057 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.support-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.support-highlight .highlight-content {
    position: relative;
    z-index: 1;
}

.support-highlight h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.support-highlight p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

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

.support-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.support-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.model-card[data-popular="true"] {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.model-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-color);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-name {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.model-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 60px;
}

.model-features {
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.model-cta {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.model-cta:hover {
    background: #2a0129;
    transform: translateY(-2px);
}

/* Calculadora ROI */
.roi-calculator {
    padding: 80px 0;
    background: white;
}

.calculator-box {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
}

.calculator-results {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
    color: var(--text-color);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.calculator-cta {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculator-cta:hover {
    background: var(--secondary-hover);
}

/* Vídeo Institucional */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Depoimentos */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: #FFB300;
    margin-top: 5px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Timeline do Processo */
.process-timeline {
    padding: 80px 0;
    background: white;
}

.timeline {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-duration {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Garantias */
.guarantees {
    padding: 80px 0;
    background: var(--light-color);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.guarantee-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.guarantee-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question i {
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Final */
.final-cta {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #002a4d 50%, 
        #001a33 100%);
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(97, 182, 12, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    z-index: 1;
}

.cta-box {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.urgency-alert {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(97, 182, 12, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(97, 182, 12, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(97, 182, 12, 0.5);
        transform: scale(1.02);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 50px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.countdown-item {
    text-align: center;
    min-width: 90px;
    flex: 0 0 auto;
    padding: 20px 15px;
    background: rgba(97, 182, 12, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(97, 182, 12, 0.3);
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-3px);
    background: rgba(97, 182, 12, 0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(97, 182, 12, 0.3);
}

.countdown-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
    color: white;
    border: none;
    padding: 25px 60px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 15px 40px rgba(97, 182, 12, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.final-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.6s ease;
}

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

.final-cta-button:hover {
    background: linear-gradient(135deg, #4a9008, var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(97, 182, 12, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.final-cta-button i {
    font-size: 1.6rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-bonus {
    margin-top: 40px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--secondary-color), #4a9008);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(97, 182, 12, 0.3);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bonus span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Rodapé */
.footer {
    background: #01447c !important;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #01447c 0%, 
        #002a4d 50%, 
        #001a33 100%) !important;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer h4 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.footer a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 18px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(97, 182, 12, 0.3);
    border-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(97, 182, 12, 0.3);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0.9;
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.popup-title{line-height: 1.2;}
.popup-content p {
    margin-bottom: 20px;
}

/* Media query intermediária para tablets */
@media (max-width: 767px) and (min-width: 481px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .solution-box {
        padding: 35px 25px;
    }
    
    .solution-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* Responsivo Modelo LavPop */
    .model-hero h2 {
        font-size: 2.5rem;
    }
    
    .model-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .model-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .financial-highlight .roi-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Responsivo Eco-Friendly */
    .eco-friendly-hero h2 {
        font-size: 2.3rem;
    }
    
    .eco-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .eco-stats {
        gap: 40px;
    }

    /* Responsivo Suporte */
    .support-hero h2 {
        font-size: 2.3rem;
    }
    
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .support-stats {
        gap: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content {
        width: 100%;
        margin-top: 30px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* Responsivo Modelo LavPop Mobile */
    .model-hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .model-hero p {
        font-size: 1.1rem;
    }
    
    .model-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .model-advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .financial-highlight {
        padding: 40px 20px;
    }
    
    .financial-highlight h3 {
        font-size: 2rem;
    }
    
    .financial-highlight .roi-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roi-stat .roi-number {
        font-size: 2.5rem;
    }
    
    .enhanced-cta {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    /* Responsivo Eco-Friendly Mobile */
    .eco-friendly-hero h2 {
        font-size: 2rem;
    }
    
    .eco-friendly-hero p {
        font-size: 1rem;
    }
    
    .eco-card {
        padding: 40px 25px;
    }
    
    .eco-icon-container {
        width: 80px;
        height: 80px;
    }
    
    .eco-icon-container i {
        font-size: 2rem;
    }
    
    .eco-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .eco-stat-number {
        font-size: 2.5rem;
    }

    /* Responsivo Suporte Mobile */
    .support-hero h2 {
        font-size: 2rem;
    }
    
    .support-hero p {
        font-size: 1rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        padding: 35px 20px;
        min-height: 260px;
    }
    
    .support-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .support-icon-wrapper i {
        font-size: 2rem;
    }
    
    .support-highlight {
        padding: 40px 20px;
    }
    
    .support-highlight h3 {
        font-size: 1.8rem;
    }
    
    .support-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .support-stat-number {
        font-size: 2.5rem;
    }

    .hero-logo {
        gap: 8px;
    }
    
    .hero-logo .lavpop-logo {
        height: 80px;
    }
    
    .hero-logo .asec-logo {
        height: 26px;
    }
    
    .by-text {
        font-size: 0.9rem;
    }
    
    .hero-highlight-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .problem-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .problem-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .solution-box {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .solution-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .solution-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-item {
        padding: 10px 0;
    }
    
    .solution-item span {
        font-size: 1rem;
    }
    
    .models-grid,
    .testimonials-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    /* CTA Final responsivo */
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-box {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
    
    .urgency-alert {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .cta-countdown {
        gap: 20px;
        padding: 20px;
        margin-bottom: 35px;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2.8rem;
    }
    
    .countdown-label {
        font-size: 0.95rem;
    }
    
    .final-cta-button {
        padding: 20px 45px;
        font-size: 1.2rem;
        gap: 15px;
    }
    
    .final-cta-button i {
        font-size: 1.4rem;
    }
    
    .cta-bonus {
        margin-top: 30px;
        padding: 15px 25px;
        max-width: 350px;
    }
    
    .cta-bonus span {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .credibility-bar {
        padding: 30px 0;
    }
    
    .credibility-swiper {
        padding: 0 10px;
    }
    
    .credibility-item {
        gap: 10px;
        padding: 15px 5px;
    }
    
    .credibility-item img {
        height: 40px;
        max-width: 100px;
    }
    
    .credibility-item span {
        font-size: 0.8rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero-logo {
        gap: 6px;
    }
    
    .hero-logo .lavpop-logo {
        height: 70px;
    }
    
    .hero-logo .asec-logo {
        height: 22px;
    }
    
    .by-text {
        font-size: 0.85rem;
    }
    
    .hero-highlight-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number .value { font-size: 1.6rem; }
    .stat-number .unit { font-size: 0.9rem; }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 15px 25px;
    }
    
    /* CTA Final mobile */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
        /* Fallback for browsers that don't support background-clip */
        color: white;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .urgency-alert {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 25px;
        gap: 8px;
    }
    
    .cta-countdown {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 12px 8px;
        flex: 1 1 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    .countdown-number {
        font-size: 2.2rem;
        margin-bottom: 3px;
    }
    
    .countdown-label {
        font-size: 0.85rem;
    }
    
    .final-cta-button {
        font-size: 1rem;
        padding: 18px 35px;
        gap: 12px;
        border-radius: 40px;
    }
    
    .final-cta-button i {
        font-size: 1.2rem;
    }
    
    .cta-bonus {
        margin-top: 25px;
        padding: 12px 20px;
        max-width: 300px;
        border-radius: 12px;
    }
    
    .cta-bonus span {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .problem-card {
        padding: 20px 15px;
        margin-bottom: 10px;
    }
    
    .problem-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .problem-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .solution-box {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .solution-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .solution-items {
        gap: 12px;
    }
    
    .solution-item {
        padding: 8px 0;
        align-items: flex-start;
    }
    
    .solution-item i {
        font-size: 1.2rem;
        margin-top: 2px;
    }
    
    .solution-item span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        height: 55px;
        margin-bottom: 15px;
    }
    
    .footer-brand p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .footer-bottom {
        padding-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-card {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .model-card[data-popular="true"] {
        transform: none;
    }
    
    .model-image {
        width: 100px;
        height: 100px;
    }
    
    .model-name {
        font-size: 1.2rem;
    }
    
    .model-description {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text > * {
    animation-delay: 0.2s;
}

.hero-form {
    animation-delay: 0.4s;
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .testimonial-header img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .testimonial-info span {
        font-size: 0.85rem;
    }
    
    .stars {
        margin-top: 3px;
    }
    
    .stars i {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .testimonial-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Força cor azul escura no rodapé - Override final */
footer.footer,
.footer,
section.footer,
#rodape,
#footer {
    background: #01447c !important;
    background-color: #01447c !important;
}

footer.footer::before,
.footer::before,
section.footer::before {
    background: linear-gradient(135deg, #01447c 0%, #002a4d 50%, #001a33 100%) !important;
}