:root {
    --voolte-primary: #11440a;
    --voolte-secondary: #1b5e20;
    --voolte-gold: #e2b347;
    --voolte-light-green: #d6fac8;
    --voolte-light-gray: #f5f5f5;
    --voolte-neutral-green: #a2d39c;
    --voolte-gradient: linear-gradient(180deg, #11440a 0%, #1b5e20 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-heading-light: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 200;
}

/* Estilo para headings leves com Manrope */
.heading-light {
    font-family: var(--font-heading-light);
    font-weight: 200; /* Usando o peso 200 mais leve, agora que está disponível na importação */
    letter-spacing: -0.02em; /* Espaçamento negativo original */
    margin-top: -0.1em; /* Margem negativa no topo para melhorar a separação visual */
    margin-bottom: 0.8em; /* Aumentar margem inferior para compensar */
    color: var(--voolte-primary); /* Cor original */
}

/* Regras específicas para garantir que os títulos sejam leves */
h1.heading-light, h2.heading-light, h3.heading-light, h4.heading-light, h5.heading-light, h6.heading-light,
.section-title.heading-light {
    font-family: var(--font-heading-light) !important;
    font-weight: 200 !important;
}

.navbar { 
    background-color: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); 
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.hero-section { 
    background: linear-gradient(180deg, var(--voolte-light-green) 0%, #fff 100%); 
    padding: 100px 0 30px; 
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 76px; /* Altura do navbar */
}

/* Ajuste para garantir que o conteúdo seja clicável */
.hero-section * {
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.hero-section .row {
    align-items: center;
    min-height: 400px;
}

.hero-section .col-lg-6:first-child {
    padding-right: 3rem;
}

.hero-section .col-lg-6:last-child {
    padding-left: 3rem;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.hero-section img:hover {
    transform: scale(1.02);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Estilo específico para o heading da hero section */
.hero-section h1.heading-light {
    font-size: 3.6rem;
    line-height: 1.1;
    color: var(--voolte-primary);
}

.hero-section .lead {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.cta-button { 
    font-family: var(--font-body);
    background: var(--voolte-gradient);
    color: white; 
    padding: 14px 32px; 
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    font-weight: 200;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(17, 68, 10, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 68, 10, 0.3);
    color: white;
}

.testimonial-card { 
    border-radius: 5px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    transition: all 0.3s ease;
    background: white;
    padding: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-card {
    background: white;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--voolte-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--voolte-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--voolte-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    color: var(--voolte-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    font-family: var(--font-heading);
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

#beneficios {
    background: linear-gradient(135deg, #fff 0%, var(--voolte-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

#beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#beneficios .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
}

.pricing-card { 
    border-radius: 5px; 
    transition: all 0.3s ease;
    border: none;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.section-title {
    color: var(--voolte-primary);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-weight: 200;
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--voolte-gradient);
    border-radius: 2px;
}

.feature-icon {
    color: var(--voolte-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--voolte-light-green);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.card {
    border: none;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.table {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #dee2e6;
}

.table thead th {
    background: var(--voolte-gradient);
    color: white;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

.table thead th:last-child {
    border-right: 1px solid #dee2e6;
}

.table tbody td:last-child {
    border-right: 1px solid #dee2e6;
}

.btn-outline-primary {
    border: 2px solid var(--voolte-primary);
    color: var(--voolte-primary);
    font-weight: 200;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--voolte-primary);
    color: white;
    transform: translateY(-2px);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 200;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--voolte-primary) !important;
}

.display-4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 200;
    color: #666;
}

.bg-light {
    background-color: var(--voolte-light-gray) !important;
}

.text-primary {
    color: var(--voolte-primary) !important;
}

.btn-primary {
    background: var(--voolte-gradient);
    border: none;
}

.btn-primary:hover {
    background: var(--voolte-gradient);
    opacity: 0.9;
}

.border-primary {
    border-color: var(--voolte-primary) !important;
}

.table-primary {
    background: var(--voolte-light-green) !important;
}

.bg-primary {
    background: var(--voolte-gradient) !important;
}

.navbar-brand img {
    max-height: 45px;
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 30px;
    }
    
    .hero-section .col-lg-6:first-child,
    .hero-section .col-lg-6:last-child {
        padding: 0 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 20px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section .row {
        min-height: auto;
    }
    
    .hero-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
}

.segment-card {
    background: white;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.segment-icon {
    width: 70px;
    height: 70px;
    background: var(--voolte-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--voolte-primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.segment-card:hover .segment-icon {
    background: var(--voolte-primary);
    color: white;
    transform: scale(1.1);
}

.segment-card h4 {
    color: var(--voolte-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    font-family: var(--font-heading);
}

.segment-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

#para-quem {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#para-quem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#para-quem .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .segment-card {
        padding: 1.5rem;
    }
    
    .segment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .segment-card h4 {
        font-size: 1.2rem;
    }
}

.step-card {
    background: white;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--voolte-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--voolte-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--voolte-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--voolte-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.step-card h4 {
    color: var(--voolte-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    font-family: var(--font-heading);
}

.step-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight-card {
    background: var(--voolte-primary);
    border-radius: 5px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--voolte-gold);
}

.highlight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

#como-funciona {
    background: linear-gradient(135deg, var(--voolte-light-gray) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#como-funciona .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-card h4 {
        font-size: 1.2rem;
    }
    
    .highlight-card {
        padding: 2rem;
    }
    
    .highlight-card h3 {
        font-size: 1.5rem;
    }
}

.table-comparison {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.table-comparison thead th {
    background: var(--voolte-primary);
    color: white;
    border: none;
    padding: 1.2rem;
    font-weight: 200;
    font-size: 1.1rem;
}

.table-comparison tbody td {
    padding: 1.2rem;
    vertical-align: middle;
    border-color: rgba(0,0,0,0.05);
    color: #333;
}

.table-comparison tbody tr:hover {
    background-color: rgba(17, 68, 10, 0.02);
}

.table-comparison .text-success {
    color: #333 !important;
    font-weight: 200;
}

.table-comparison .text-warning {
    color: #666 !important;
    font-weight: 200;
}

.table-comparison .text-danger {
    color: #666 !important;
    font-weight: 200;
}

.table-comparison tbody tr td:first-child {
    background-color: rgba(17, 68, 10, 0.03);
    font-weight: 200;
    color: var(--voolte-primary);
}

#comparativo {
    background: linear-gradient(135deg, var(--voolte-light-gray) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#comparativo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#comparativo .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .table-comparison thead th {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .table-comparison tbody td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.pricing-highlight {
    background: white;
    border-radius: 5px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.pricing-highlight h3 {
    color: var(--voolte-primary);
    font-size: 2.5rem;
    font-weight: 200;
}

.pricing-highlight .lead {
    color: #666;
    font-size: 1.3rem;
}

.feature-item {
    background: white;
    border-radius: 5px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--voolte-primary);
}

.feature-item h5 {
    color: var(--voolte-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 200;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

#planos {
    background: linear-gradient(135deg, var(--voolte-light-gray) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#planos .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pricing-highlight {
        padding: 2rem;
    }
    
    .pricing-highlight h3 {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
}

.ebook-content {
    padding: 2rem;
}

.ebook-features {
    background: rgba(17, 68, 10, 0.03);
    border-radius: 5px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.ebook-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 200;
}

.ebook-features .feature-item:last-child {
    margin-bottom: 0;
}

.ebook-features i {
    color: var(--voolte-primary);
    font-size: 1.2rem;
}

.ebook-image {
    position: relative;
    padding: 2rem;
}

.ebook-image img {
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ebook-image:hover img {
    transform: scale(1.02);
}

.badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.badge-overlay .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: var(--voolte-primary) !important;
    box-shadow: 0 4px 15px rgba(17, 68, 10, 0.2);
}

#ebook {
    background: linear-gradient(135deg, var(--voolte-light-gray) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#ebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

#ebook .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ebook-content {
        padding: 1rem;
    }
    
    .ebook-features {
        padding: 1rem;
    }
    
    .ebook-image {
        padding: 1rem;
    }
    
    .badge-overlay {
        top: 10px;
        right: 10px;
    }
}

.final-cta {
    background: var(--voolte-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 3rem 0;
}

.cta-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
    color: white;
    font-family: var(--font-heading);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.final-cta .cta-button {
    background: white;
    color: var(--voolte-primary);
    padding: 1rem 2.5rem;
    font-weight: 200;
    border: none;
    transition: all 0.3s ease;
}

.final-cta .cta-button:hover {
    background: var(--voolte-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.final-cta .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 2rem 0;
    }
    
    .cta-stats {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
}

footer {
    background: var(--voolte-primary) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="100" height="100"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

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

footer h5 {
    color: var(--voolte-primary);
    font-weight: 200;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--voolte-primary) !important;
}

.social-links a {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.social-links i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .social-links {
        justify-content: center;
    }
    
    footer .mb-4 {
        margin-bottom: 2rem !important;
    }
}

/* Regra específica para texto branco no CTA final */
.final-cta .heading-light {
    color: white !important;
}

/* Ajustes para tabela de comparação */
.table-bordered {
    border: 1px solid #dee2e6 !important;
}

.table-bordered th:last-child,
.table-bordered td:last-child {
    border-right: 1px solid #dee2e6 !important;
}

.table-bordered th,
.table-bordered td {
    border-color: #dee2e6 !important;
}

#comparativo .table {
    border-collapse: separate;
    border-spacing: 0;
} 