:root {
    --dourado-primary: #D4AF37;
    --dourado-dark: #C6A735;
    --preto-principal: #121212;
    --preto-card: #1E1E1E;
    --preto-input: #2A2A2A;
    --branco: #FFFFFF;
    --cinza-claro: #CCCCCC;
    --dourado-light: rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--branco);
    background-color: var(--preto-principal);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

header {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

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

.logo {
    height: 50px;
}

.logo svg {
    height: 100%;
    width: auto;
}

.logo path:first-child {
    fill: var(--branco);
}

.logo path:nth-child(2) {
    fill: var(--dourado-primary);
}

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

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--dourado-dark);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--dourado-primary);
    border: 2px solid var(--dourado-primary);
    padding: 10px 26px;
}

.cta-button-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    background-color: var(--preto-principal);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 550px;
}

.hero-text {
    width: 100%;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 .highlight {
    display: inline;
    font-size: 1em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image:before {
    display: none;
}

.hero-image img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

.benefit-item span {
    font-weight: 500;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Resultados Comprovados Section */
.results-section {
    background-color: var(--preto-principal);
    color: var(--branco);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 1;
}

.results-section .section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.results-section .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--branco);
}

.results-section .section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.stat-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 8px;
    max-height: 200px;
}

.stat-card:hover .stat-img {
    transform: scale(1.05);
}

.stat-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--preto-card);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 16px;
    line-height: 1;
}

.stat-unit {
    font-size: 28px;
    font-weight: 600;
    margin-left: 4px;
}

.stat-description {
    font-size: 16px;
    color: var(--branco);
    margin-bottom: 20px;
    flex-grow: 1;
}

.stat-description strong {
    color: var(--branco);
    font-weight: 700;
}

.stat-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    display: block;
}

.cta-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--branco);
}

/* Como Funciona Section */
.how-it-works {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
}

.how-it-works .section-title {
    color: var(--preto-principal);
}

.how-it-works .section-subtitle {
    color: rgba(18, 18, 18, 0.7);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.step-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 32px;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-icon {
    color: var(--dourado-primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--preto-principal);
}

.step-description {
    color: rgba(18, 18, 18, 0.8);
    font-size: 16px;
}

/* Estatísticas */
.stats {
    display: flex;
    gap: 24px;
    margin-top: 64px;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 24px;
    background-color: #F8F8F8;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--preto-principal);
}

/* Formulário */
.contact-section {
    background-color: var(--branco);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 1;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.fidelize-tag {
    display: inline-block;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-text {
    flex: 1;
    color: var(--preto-principal);
}

.cashback-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--preto-principal);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0 16px;
    color: var(--preto-principal);
}

.kotler-quote {
    margin: 30px 0;
    font-style: italic;
    color: rgba(18, 18, 18, 0.9);
    max-width: 90%;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--dourado-primary);
}

.quote-author {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: rgba(18, 18, 18, 0.6);
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(18, 18, 18, 0.8);
    margin-bottom: 24px;
}

.partner-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.partner-label {
    font-size: 14px;
    color: rgba(18, 18, 18, 0.7);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.partner-icon {
    color: rgba(18, 18, 18, 0.6);
    font-size: 24px;
    transition: color 0.3s ease;
}

.partner-icon:hover {
    color: var(--dourado-primary);
}

.contact-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--dourado-primary);
    color: var(--branco);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    background-color: var(--preto-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--branco);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.submit-button {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
}

.privacy-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    text-align: center;
}

/* Whatsapp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.whatsapp-float i {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 100px;
        left: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
        font-size: 26px;
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-image:before {
        max-width: 400px;
        max-height: 400px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .hamburger-button {
        display: block !important;
        z-index: 999;
    }
    
    .mobile-menu {
        display: block !important;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

/* Estilos para links de fonte e modal */
.source-link {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.source-link:hover {
    text-decoration: underline;
    color: var(--dourado-dark);
}

.source-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--preto-card);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--dourado-primary);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    color: var(--cinza-claro);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--dourado-primary);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 160px);
}

.source-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.source-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.source-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--branco);
}

.modal-footer {
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .source-content {
        flex-direction: column;
    }
    
    .source-img {
        max-height: 200px;
    }
}

.source-quote {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.source-quote h4 {
    color: var(--dourado-primary);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
}

.source-highlight {
    border-left: 3px solid var(--dourado-primary);
    padding-left: 16px;
    margin: 16px 0;
    font-style: italic;
}

.source-info {
    font-size: 12px;
    color: var(--cinza-claro);
    text-align: right;
    margin-top: 16px;
}

.source-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Separador de Seções */
.section-divider {
    height: 5px;
    background: linear-gradient(90deg, var(--dourado-primary), transparent);
    margin: 0;
    border: none;
}

.section-divider-right {
    background: linear-gradient(90deg, transparent, var(--dourado-primary));
}

/* Ajustes para source-link na seção escura */
.results-section .source-link {
    color: var(--dourado-primary);
}

.results-section .source-link:hover {
    color: var(--branco);
}

/* Ajustes para button na seção escura */
.results-section .cta-button {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
}

.results-section .cta-button:hover {
    background-color: var(--dourado-dark);
}

/* Estilos para os banners de fonte */
.source-banner {
    position: relative;
    background-color: var(--preto-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.veja-banner {
    background-image: linear-gradient(135deg, #003366 0%, #0066cc 100%);
}

.mercado-banner {
    background-image: linear-gradient(135deg, #006633 0%, #00cc66 100%);
}

.opinion-banner {
    background-image: linear-gradient(135deg, #660033 0%, #cc0066 100%);
}

.source-logo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.source-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.source-category {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.source-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.source-visual i {
    font-size: 32px;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.visual-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 2px solid var(--dourado-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--dourado-primary);
    transform: rotate(45deg) translate(30px, -60px);
    z-index: 1;
}

.pricing-header {
    margin-bottom: 24px;
    position: relative;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--preto-principal);
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--dourado-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-price {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-end;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: var(--preto-principal);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: rgba(18, 18, 18, 0.6);
    margin-left: 5px;
    margin-bottom: 5px;
}

.pricing-annual {
    font-size: 14px;
    color: var(--dourado-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

/* Estilo para a tag de economia */
.savings-tag {
    display: inline-block;
    background-color: #D4AF37;
    color: #121212;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    transform: translateY(-1px);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.pricing-features i {
    color: var(--dourado-primary);
    margin-right: 10px;
    font-size: 14px;
    margin-top: 3px;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.pricing-cta:hover {
    background-color: var(--dourado-dark);
}

.pricing-info {
    text-align: center;
    margin-top: 40px;
    color: rgba(18, 18, 18, 0.7);
    font-size: 14px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: auto;
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
} 

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--dourado-primary);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    margin-top: 4px;
}

.footer-app {
    margin-top: 24px;
}

.footer-app h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--branco);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn i {
    font-size: 18px;
}

.app-btn:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
}

.footer-logo {
    max-width: 150px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: var(--dourado-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--dourado-dark);
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.pix-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dourado-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 18px;
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--preto-principal);
    padding: 100px 0;
    color: var(--branco);
}

.testimonials-container {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.featured {
    border: 1px solid var(--dourado-primary);
    background: linear-gradient(145deg, var(--preto-card) 0%, rgba(40, 40, 40, 1) 100%);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--dourado-primary);
    font-size: 32px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.testimonial-rating {
    color: var(--dourado-primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--dourado-primary);
    font-family: 'Georgia', serif;
    opacity: 0.5;
}

.testimonial-result {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dourado-primary);
    display: block;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .cta-section {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Calculadora de ROI Section */
.calculadora-section {
    background-color: var(--branco);
    color: var(--preto-principal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.calculadora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 70%);
    z-index: 1;
}

.calculadora-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculadora-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculadora-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculadora-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculadora-container {
        padding: 30px 20px;
    }
} 

/* Menu hamburger e menu móvel */
.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--dourado-primary);
}

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

.mobile-cta {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--dourado-dark);
}

/* Ajuste para exibir o menu hambúrguer em telas menores */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger-button {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-container .cta-button {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Calculator Styles */
.calculator-container {
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--preto-principal);
    margin-bottom: 10px;
}

.calculator-header p {
    color: rgba(18, 18, 18, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-display {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 20px;
}

.faturamento-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    margin: 20px 0;
}

.faturamento-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--dourado-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faturamento-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.faturamento-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(18, 18, 18, 0.5);
}

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

.result-card {
    background-color: var(--preto-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.result-card.highlighted {
    background: linear-gradient(145deg, var(--preto-card), var(--preto-principal));
    border-color: rgba(212, 175, 55, 0.6);
    position: relative;
    transform: scale(1.05);
}

.result-card.highlighted::before {
    content: "Mais Atingido";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.4;
}

.result-label .percent {
    font-weight: 700;
    color: var(--dourado-primary);
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.calculator-roi {
    background-color: var(--preto-principal);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roi-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--dourado-primary);
    margin-bottom: 10px;
}

.roi-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

#roi-multiplier {
    font-weight: 600;
    color: var(--dourado-primary);
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 30px 20px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card.highlighted {
        order: -1;
    }
}

.source-modal.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background-color: #171717;
    color: var(--branco);
    padding: 20px 0;
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-top: none;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--cinza-claro);
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--preto-card);
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--dourado-primary);
    color: var(--preto-principal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--dourado-primary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-list a::before {
    content: '›';
    margin-right: 8px;
    color: var(--dourado-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--dourado-primary);
}

.footer-list a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

    border-color: rgba(212, 175, 