.elementor-1087 .elementor-element.elementor-element-6dcefb0{--display:flex;--justify-content:space-evenly;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:nowrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1087 .elementor-element.elementor-element-bcddce9{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}body.elementor-page-1087{margin:0px 0px 0px 0px;padding:0% 0% 0% 0%;}/* Start custom CSS for html, class: .elementor-element-bcddce9 *//* Variáveis de cores para tema escuro */
:root {
    /* Cores principais */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-overlay: rgba(0, 0, 0, 0.8);
    
    /* Cores de texto */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-accent: #f5f5f5;
    
    /* Cores de destaque - Amarelo Suave */
    --accent-primary: #f4d03f;
    --accent-secondary: #f7dc6f;
    --accent-tertiary: #f8eaa3;
    
    /* Cores de gradiente */
    --gradient-primary: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    --gradient-secondary: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(244, 208, 63, 0.9) 0%, rgba(247, 220, 111, 0.9) 100%);
    
    /* Cores de borda e sombra */
    --border-primary: #333333;
    --border-secondary: #444444;
    --shadow-primary: 0 8px 32px rgba(244, 208, 63, 0.2);
    --shadow-secondary: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}



.container {
    
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(244, 208, 63, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 208, 63, 0);
    }
}

/* Hero Section - Baseado no site real */
.hero-section {
    background: var(--gradient-secondary);
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.benefit-item {
    margin: 10px;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.benefit-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.hero-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-benefits {
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



.hero-cta {
    
    text-align: center;
}

.hero-cta a{
    font-size: 1rem;
}

.cta-subtitle {
    margin-top: 15px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsividade para Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        /* text-align: center; */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        margin-bottom: 20px;
        justify-content: start;
        flex-direction: column;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .hero-video {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-video-container {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-benefits {
        justify-content: start;
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    .benefit-item {
        justify-content: start;
        font-size: 0.7rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    .hero-video {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-video-container {
        padding-bottom: 56.25%;
    }
    
}



.hero-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--bg-secondary);
}

.hero-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}


.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.result-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.result-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.result-text span {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Countdown Section */
.countdown-section {
    background: var(--bg-tertiary);
    padding: 30px 0;
    margin-top: 40px;
}

.countdown-text {
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    min-width: 80px;
    border: 1px solid var(--border-primary);
}

.countdown-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.countdown-item .label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Responsividade para Countdown Section */
@media (max-width: 768px) {
    .countdown-section {
        padding: 25px 0;
        margin-top: 30px;
    }
    
    .countdown-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .countdown-item .number {
        font-size: 1.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 20px 0;
        margin-top: 25px;
    }
    
    .countdown-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .countdown-timer {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .countdown-item .number {
        font-size: 1.3rem;
    }
    
    .countdown-item .label {
        font-size: 0.65rem;
    }
}

/* Opportunity Section */
.opportunity-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.opportunity-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.opportunity-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.opportunity-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.opportunity-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Opportunity Marquee */
.opportunity-marquee {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.opportunity-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.opportunity-marquee .marquee-track {
    display: flex;
    animation: marquee 60s linear infinite;
    width: max-content;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.opportunity-marquee .marquee-track:hover {
    animation-play-state: paused;
}

.opportunity-marquee .marquee-item {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.opportunity-marquee .marquee-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary);
}

.opportunity-marquee .marquee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.opportunity-marquee .marquee-item:hover .marquee-image {
    transform: scale(1.1);
}

.opportunity-marquee .marquee-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsividade para Opportunity Section */
@media (max-width: 768px) {
    .opportunity-section {
        padding: 60px 0;
    }
    
    .opportunity-content h2 {
        font-size: 2rem;
    }
    
    .opportunity-text {
        font-size: 1.1rem;
    }
    
    /* Mobile: Converter marquee em slider */
    .opportunity-marquee {
        overflow: visible;
        margin-top: 40px;
    }
    
    .opportunity-marquee::before {
        display: none;
    }
    
    .opportunity-marquee .marquee-track {
        animation: none;
        width: 100%;
        gap: 0;
        padding: 0;
        position: relative;
        transform: none !important;
    }
    
    .opportunity-marquee .marquee-item {
        flex: 0 0 100%;
        height: 320px;
        margin: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease;
        display: none;
        width: 100%;
    }
    
    .opportunity-marquee .marquee-item.active {
        opacity: 1;
        position: relative;
        display: block;
    }
    
    /* Controles do slider mobile */
    .opportunity-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .opportunity-slider-btn {
        background: var(--accent-primary);
        color: var(--bg-primary);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        position: relative;
    }
    
    .opportunity-slider-btn:hover {
        background: var(--accent-secondary);
        transform: scale(1.1);
    }
    
    .opportunity-slider-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    
    .opportunity-slider-dots {
        display: flex;
        gap: 8px;
        margin: 0 20px;
    }
    
    .opportunity-slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--border-primary);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        position: relative;
    }
    
    .opportunity-slider-dot.active {
        background: var(--accent-primary);
        transform: scale(1.2);
    }
    
        .opportunity-marquee .marquee-cta {
        margin-top: 30px;
    }
    
    /* Mostrar controles apenas em mobile */
@media (max-width: 768px) {
    .opportunity-slider-controls,
    .social-proof-slider-controls {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
}

/* Esconder controles em desktop */
@media (min-width: 769px) {
    .opportunity-slider-controls,
    .social-proof-slider-controls {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media (max-width: 480px) {
    .opportunity-section {
        padding: 40px 0;
    }
    
    .opportunity-content h2 {
        font-size: 1.8rem;
    }
    
    .opportunity-text {
        font-size: 1rem;
    }
    
    .opportunity-marquee .marquee-item {
        flex: 0 0 300px;
        height: 320px;
    }
    
    .opportunity-marquee .marquee-track {
        animation-duration: 20s;
        gap: 15px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-secondary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsividade para Benefits Section */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* Target Section */
.target-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.target-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.target-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.target-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.target-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.target-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--accent-primary);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-primary);
}

.target-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.target-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.target-content strong {
    font-weight: 600;
    color: var(--accent-primary);
}

.target-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.target-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.target-item:hover .target-image img {
    transform: scale(1.05);
}

/* Target CTA */
.target-cta {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 50px;
   display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-secondary);
    border: 2px solid var(--border-primary);
}

.target-cta-content h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.target-cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}




.target-cta-image-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 25px;
}

/* Estilos para vídeos */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    background: var(--bg-secondary);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    object-fit: cover;
}

.video-container video {
    background: var(--bg-secondary);
}



/* Desabilitar download do vídeo */
.video-container video::-webkit-media-controls-download-button {
    display: none !important;
}

.video-container video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Garantir que o vídeo seja renderizado corretamente */
.video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: var(--shadow-secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}



/* Garantir que o vídeo seja sempre visível */
.video-container video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Estilos específicos para vídeo da hero section */
.hero-video-container video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--bg-secondary);
}

/* Estilizar controles padrão do vídeo */
.hero-video-container video::-webkit-media-controls {
    border-radius: 15px;
}

.hero-video-container video::-webkit-media-controls-panel {
    border-radius: 15px;
}



.video-caption {
    text-align: center;
    margin-bottom: 30px;
}

.video-caption h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-caption p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.video-container-large {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    margin-top: 60px;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    margin: 0 auto 30px;
}

.video-container-large iframe,
.video-container-large video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: cover;
}

.video-container-large video {
    background: var(--bg-secondary);
}

.video-caption-large {
    text-align: center;
    margin-bottom: 40px;
}

.video-caption-large h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-caption-large p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.final-video-section {
    margin: 60px 0;
    padding: 40px 0;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
}

/* Responsividade para Target Section */
@media (max-width: 768px) {
    .target-section {
        padding: 60px 0;
    }
    
    .target-section .section-header h2 {
        font-size: 2rem;
    }
    
    .target-section .section-header p {
        font-size: 1rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-item {
        padding: 25px;
    }
    
    .target-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .target-icon i {
        font-size: 1.5rem;
    }
    
    .target-content h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .target-cta {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
        text-align: center;
    }
    
    .target-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .target-cta-content p {
        font-size: 1rem;
    }
    
    .target-cta-image-img img {
        max-height: 300px;
        border-radius: 25px;
    }

    /* Responsividade para vídeos */
    .video-container {
        margin-bottom: 15px;
    }

    .video-caption h4 {
        font-size: 1.1rem;
    }

    .video-caption p {
        font-size: 0.9rem;
    }

    .video-container-large {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .video-caption-large h4 {
        font-size: 1.3rem;
    }

    .video-caption-large p {
        font-size: 1rem;
    }

    .final-video-section {
        margin: 40px 0;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .target-section {
        padding: 40px 0;
    }
    
    .target-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .target-section .section-header p {
        font-size: 0.95rem;
    }
    
    .target-grid {
        gap: 15px;
    }
    
    .target-item {
        padding: 20px;
    }
    
    .target-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .target-icon i {
        font-size: 1.2rem;
    }
    
    .target-content h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .target-cta {
        gap: 25px;
    }
    
    .target-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .target-cta-content p {
        font-size: 0.95rem;
    }

    /* Responsividade para vídeos em telas pequenas */
    .video-caption h4 {
        font-size: 1rem;
    }

    .video-caption p {
        font-size: 0.85rem;
    }

    .video-caption-large h4 {
        font-size: 1.2rem;
    }

    .video-caption-large p {
        font-size: 0.95rem;
    }

    .final-video-section {
        margin: 30px 0;
        padding: 20px 0;
    }

    /* Responsividade para vídeo na seção de benefícios */
    .benefits-video-section {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .benefits-video-section .video-caption h4 {
        font-size: 1.2rem;
    }

    .benefits-video-section .video-caption p {
        font-size: 1rem;
    }

    /* Responsividade para telas pequenas */
    @media (max-width: 480px) {
        .benefits-video-section {
            margin-top: 30px;
            padding: 20px 15px;
        }

        .benefits-video-section .video-container {
            margin: 0 auto 20px;
            padding-bottom: 56.25%;
            height: 0;
        }

        .benefits-video-section .video-container video {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
        }

        .benefits-video-section .video-caption h4 {
            font-size: 1.1rem;
        }

        .benefits-video-section .video-caption p {
            font-size: 0.9rem;
        }
    }

    /* Estilos para vídeo na seção de benefícios */
    .benefits-video-section {
        margin-top: 60px;
        text-align: center;
        padding: 40px 0;
        background: var(--bg-card);
        border-radius: 20px;
        box-shadow: var(--shadow-card);
    }

    .benefits-video-section .video-container {
        max-width: 800px;
        margin: 0 auto 30px;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        position: relative;
        height: 0;
        background: var(--bg-secondary);
    }

    .benefits-video-section .video-container video {
        border-radius: 15px;
        box-shadow: var(--shadow-secondary);
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        background: var(--bg-secondary);
    }

    .benefits-video-section .video-caption h4 {
        color: var(--accent-primary);
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .benefits-video-section .video-caption p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .target-cta-image-img  {
        max-height: 300px;
        border-radius: 25px;
    }
}



/* Creator Section */
.creator-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.creator-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.creator-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-secondary);
}

.creator-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.creator-text h3 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.creator-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsividade para Creator Section */
@media (max-width: 768px) {
    .creator-section {
        padding: 60px 0;
    }
    
    .creator-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .creator-text h2 {
        font-size: 2rem;
    }
    
    .creator-text h3 {
        font-size: 1.3rem;
    }
    
    .creator-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .creator-section {
        padding: 40px 0;
    }
    
    .creator-content {
        gap: 30px;
    }
    
    .creator-text h2 {
        font-size: 1.8rem;
    }
    
    .creator-text h3 {
        font-size: 1.2rem;
    }
    
    .creator-description {
        font-size: 0.95rem;
    }
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade para Content Section */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Timeline Styles */
.timeline-container {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.timeline {
    position: relative;
    padding: 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    width: 45%;
    cursor: pointer;
}

.timeline-item.initial {
    opacity: 0;
    transform: translateX(-30px);
}

.timeline-item.timeline-right.initial {
    transform: translateX(30px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.timeline-right {
    margin-left: auto;
    transform: translateX(30px);
}

.timeline-item.active .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.timeline-item.active .timeline-content {
    border-left-color: var(--accent-tertiary);
    box-shadow: var(--shadow-secondary);
}

.timeline-item.timeline-right.active .timeline-content {
    border-right-color: var(--accent-tertiary);
    border-left-color: var(--accent-primary);
}

.timeline-marker {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item .timeline-marker {
    right: -60px;
}

.timeline-item.timeline-right .timeline-marker {
    left: -60px;
}

.timeline-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--accent-tertiary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.timeline-item.timeline-right .timeline-number {
    right: auto;
    left: -8px;
}

.timeline-icon {
    color: white;
    font-size: 1.2rem;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-primary);
}

.timeline-item.timeline-right .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent-primary);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.timeline-duration {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.timeline-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

/* Timeline Summary */
.timeline-summary {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    color: var(--text-primary);
    position: sticky;
    top: 20px;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-card);
}

.summary-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.summary-header p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    color: #FFFFFF;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade para Timeline Section */
@media (max-width: 768px) {
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .timeline {
        padding: 0 20px;
    }
    
    .timeline::before {
        left: 20px;
        width: 2px;
    }
    
    .timeline-item {
        width: 100%;
        margin-bottom: 40px;
        margin-left: 0;
        transform: none;
    }
    
    .timeline-item.timeline-right {
        margin-left: 0;
        transform: none;
    }
    
    .timeline-item .timeline-marker {
        right: auto;
        left: -10px;
        width: 35px;
        height: 35px;
    }
    
    .timeline-item.timeline-right .timeline-marker {
        left: -10px;
        right: auto;
        width: 35px;
        height: 35px;
    }
    
    .timeline-item .timeline-number {
        right: auto;
        left: -5px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .timeline-item.timeline-right .timeline-number {
        left: -5px;
        right: auto;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 20px;
        margin-left: 25px;
        border-left: 4px solid #9c6b3f;
        border-right: none;
    }
    
    .timeline-item.timeline-right .timeline-content {
        border-left: 4px solid #9c6b3f;
        border-right: none;
        margin-left: 25px;
    }
    
    .timeline-header h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .timeline-topics {
        gap: 6px;
    }
    
    .topic-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .timeline-summary {
        position: static;
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .summary-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        gap: 25px;
        margin-top: 25px;
    }
    
    .timeline {
        padding: 0 15px;
    }
    
    .timeline::before {
        left: 15px;
        width: 2px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
    }
    
    .timeline-item .timeline-marker {
        left: -7px;
        width: 30px;
        height: 30px;
    }
    
    .timeline-item.timeline-right .timeline-marker {
        left: -7px;
        width: 30px;
        height: 30px;
    }
    
    .timeline-item .timeline-number {
        left: -3px;
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .timeline-item.timeline-right .timeline-number {
        left: -3px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-content {
        padding: 15px;
        margin-left: 20px;
    }
    
    .timeline-item.timeline-right .timeline-content {
        margin-left: 20px;
    }
    
    .timeline-header h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .timeline-duration {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .timeline-topics {
        gap: 5px;
    }
    
    .topic-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .timeline-summary {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .summary-header h3 {
        font-size: 1.3rem;
    }
    
    .summary-header p {
        font-size: 0.9rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
}

/* Exclusive Section */
.exclusive-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.exclusive-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.exclusive-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-secondary);
}

.exclusive-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.exclusive-item h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.exclusive-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.access-info {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-primary);
}

.access-info p {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsividade para Exclusive Section */
@media (max-width: 768px) {
    .exclusive-section {
        padding: 60px 0;
    }
    
    .exclusive-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .exclusive-item {
        padding: 30px 20px;
    }
    
    .exclusive-number {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .exclusive-number i {
        font-size: 1.2rem;
    }
    
    .exclusive-item h3 {
        font-size: 1.1rem;
    }
    
    .access-info {
        margin-top: 40px;
        padding: 25px;
    }
    
    .access-info p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .exclusive-section {
        padding: 40px 0;
    }
    
    .exclusive-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    
    .exclusive-item {
        padding: 25px 15px;
    }
    
    .exclusive-number {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .exclusive-number i {
        font-size: 1rem;
    }
    
    .exclusive-item h3 {
        font-size: 1rem;
    }
    
    .exclusive-item p {
        font-size: 0.9rem;
    }
    
    .access-info {
        margin-top: 30px;
        padding: 20px;
    }
    
    .access-info p {
        font-size: 1rem;
    }
}

/* Social Proof Section - Prints de Conversas */
.social-proof-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Proof Marquee */
.social-proof-marquee {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.social-proof-marquee-item{
    width: 320px;
    height: 320px;
    object-fit: cover;
}

.social-proof-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(10, 10, 10, 0.8) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}

.social-proof-marquee .marquee-track {
    display: flex;
    animation: socialProofMarquee 80s linear infinite;
    width: max-content;
    gap: 10px;
    padding: 40px 0;
}

.social-proof-marquee .marquee-track:hover {
    animation-play-state: paused;
}


.social-proof-marquee-content{
   width: 300px;
   height: 600px;
   object-fit: cover;
 
}

.social-proof-marquee-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.social-proof-marquee .marquee-item {
    flex: 0 0 0x;
    background: var(--bg-card);
    border-radius: 20px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}


@keyframes socialProofMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsividade para Social Proof Section */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: Converter social proof marquee em slider */
    .social-proof-marquee {
        overflow: visible;
        margin-bottom: 40px;
    }
    
    .social-proof-marquee::before {
        display: none;
    }
    
    .social-proof-marquee .marquee-track {
        animation: none;
        width: 100%;
        gap: 0;
        padding: 0;
        position: relative;
        transform: none !important;
    }
    
    .social-proof-marquee .marquee-item {
        flex: 0 0 100%;
        height: 400px;
        margin: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease;
        transform: none !important;
        display: none;
        width: 100%;
    }
    
    .social-proof-marquee .marquee-item.active {
        opacity: 1;
        position: relative;
        display: block;
    }
    
    .social-proof-marquee-content {
        width: 100%;
        height: 100%;
    }
    
    .social-proof-marquee-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .social-proof-slider-controls-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    /* Controles do social proof slider mobile */
    .social-proof-slider-controls {
        display: flex;

        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }


    
    .social-proof-slider-btn {
        background: var(--accent-primary);
        color: var(--bg-primary);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        position: relative;
    }
    
    .social-proof-slider-btn:hover {
        background: var(--accent-secondary);
        transform: scale(1.1);
    }
    
    .social-proof-slider-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    
    .social-proof-slider-dots {
        display: flex;
        gap: 8px;
        margin: 0 20px;
    }
    
    .social-proof-slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--border-primary);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        position: relative;
    }
    
    .social-proof-slider-dot.active {
        background: var(--accent-primary);
        transform: scale(1.2);
    }
    
    .social-proof-marquee .marquee-item {
        flex: 0 0 250px;
        padding: 20px;
    }
    
    .social-proof-marquee .marquee-track {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .social-proof-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .social-proof-marquee .marquee-item {
        flex: 0 0 200px;
        padding: 15px;
    }
    
    .social-proof-marquee .marquee-track {
        animation-duration: 25s;
        gap: 8px;
    }
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e3422 0%, #6d4c41 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(78, 52, 34, 0.3);
}

.carousel-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(78, 52, 34, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #4e3422;
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #4e3422 0%, #6d4c41 100%);
    transform: scale(1.3);
}

.conversation-card {
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.conversation-card:hover .card-overlay {
    opacity: 1;
}

/* Category Badge */
.category-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.category-badge.financial {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.category-badge.transformation {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.category-badge.testimonial {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
}

.category-badge i {
    font-size: 0.9rem;
}

/* Card Preview */
.card-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.card-preview i {
    font-size: 1.2rem;
}

/* Animação para filtros */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conversation-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.conversation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Card Sizes - Carousel */
.conversation-card {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

/* Conversation Header */
.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.platform-badge.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.platform-badge.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.platform-badge.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
}

.platform-badge i {
    font-size: 1rem;
}

.conversation-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Conversation Content */
.conversation-content {
    padding: 20px 25px;
    min-height: 120px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.message:last-child {
    margin-bottom: 0;
}

.message-avatar {
    flex-shrink: 0;
}

.message-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-bubble {
    background: #f1f3f4;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    position: relative;
}

.message-bubble p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.client-message .message-bubble {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-bottom-left-radius: 4px;
}

.instructor-message {
    flex-direction: row-reverse;
}

.instructor-message .message-bubble {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-bottom-right-radius: 4px;
}

/* Conversation Footer */
.conversation-footer {
    padding: 15px 25px 20px;
    background: rgba(76, 175, 80, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.result-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.result-highlight i {
    font-size: 1.1rem;
}

/* Responsive adjustments for conversation cards */
.conversation-card.large .conversation-content {
    min-height: 200px;
}

.conversation-card.medium .conversation-content {
    min-height: 150px;
}

.conversation-card.small .conversation-content {
    min-height: 100px;
}

.conversation-card.small .message-bubble {
    max-width: 90%;
}

.conversation-card.small .message-bubble p {
    font-size: 0.85rem;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #27ae60;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-card.featured .author-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.5);
    }
}

.author-badge i {
    font-size: 0.85rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    margin-top: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stat-item {
    text-align: center;
    position: relative;
}

.testimonial-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.testimonial-stat-label {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #FFFFFF, transparent);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #FFFFFF, transparent);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }
    .stat-item:not(:last-child)::after {
       display: none;
    }
    

}

/* Offer Section */
.offer-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 0 0 50% 50%;
    opacity: 0.2;
    filter: blur(20px);
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
    position: relative;
    z-index: 2;
}

/* Coluna Esquerda - Benefícios */
.offer-left h2 {
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.offer-left p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 400;
}

.offer-left .offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-left .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.offer-left .benefit-item:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.offer-left .benefit-item i {
    color: var(--accent-primary);
    font-size: 1.3rem;
    min-width: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-left .benefit-item span {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Coluna Direita - Card de Preço */
.offer-right {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-primary);
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-secondary);
    transform: translateY(-5px);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.card-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.offer-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.card-benefits {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}



.card-benefits .benefit-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    min-width: 18px;
}

.card-benefits .benefit-item span {
    color: var(--text-primary);
    font-size: 0.80rem;
    font-weight: 500;
    line-height: 1.3;
}

.pricing {
    text-align: center;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
}

.installments {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-price {
    color: var(--accent-primary);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.cash-price {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    background: var(--gradient-primary);
}

.cta-button i {
    font-size: 1rem;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: rotate(45deg) translateX(3px);
}

/* Animações */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsividade */
@media (max-width: 768px) {
    .offer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .offer-left h2 {
        font-size: 2.2rem;
    }
    
    .offer-left p {
        font-size: 1.1rem;
    }
    
    .offer-card {
        padding: 40px 30px;
    }
    
    .main-price {
        font-size: 3rem;
    }
    
    .card-logo {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .offer-section {
        padding: 40px 0;
    }
    
    .offer-left h2 {
        font-size: 1.9rem;
    }
    
    .offer-left p {
        font-size: 1rem;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .main-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 10px 10px;
        font-size: 0.802rem;
    }
    
    .card-logo {
        font-size: 2.2rem;
    }
}


/* ===== SEÇÃO DE GARANTIA ===== */
.guarantee-section {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-text h2 i {
    color: var(--accent-primary);
    font-size: 2.2rem;
}

.guarantee-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.guarantee-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.guarantee-benefits {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.guarantee-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.guarantee-benefits li:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-card);
}

.guarantee-benefits li i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.guarantee-benefits li span {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-message {
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 30px;
}

.guarantee-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(156, 107, 63, 0.15);
    transition: all 0.3s ease;
}

.guarantee-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(156, 107, 63, 0.2);
}

/* Responsividade para Guarantee Section */
@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
        justify-content: center;
    }
    
    .guarantee-text p {
        font-size: 1rem;
    }
    
    .guarantee-benefits li {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .guarantee-benefits li span {
        font-size: 0.95rem;
    }
    
    .guarantee-message {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .guarantee-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 40px 0;
    }
    
    .guarantee-content {
        gap: 30px;
        grid-template-areas: 
            "image"
            "text";
    }
    
    .guarantee-image {
        grid-area: image;
        order: 1;
    }
    
    .guarantee-text {
        grid-area: text;
        order: 2;
    }
    
    .guarantee-text h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .guarantee-text h2 i {
        font-size: 1.8rem;
    }
    
    .guarantee-text p {
        font-size: 0.95rem;
    }
    
    .guarantee-benefits {
        margin: 20px 0;
    }
    
    .guarantee-benefits li {
        padding: 10px 12px;
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .guarantee-benefits li i {
        font-size: 1rem;
    }
    
    .guarantee-benefits li span {
        font-size: 0.9rem;
    }
    
    .guarantee-message {
        padding: 12px 15px;
        font-size: 0.95rem;
        margin-top: 20px;
    }
    
    .guarantee-image img {
        max-width: 90%;
    }
}

/* ===== SEÇÃO CTA FINAL ===== */
.final-cta-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-secondary);
}

.cta-badge i {
    color: var(--bg-primary);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle-final {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-benefits {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-benefit {
    background: var(--bg-card);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.final-benefit:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: var(--shadow-primary);
}

.benefit-icon i {
    color: var(--bg-primary);
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content span {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cta-action {
    margin-bottom: 40px;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-message i {
    color: #f87171;
    animation: clockSpin 2s linear infinite;
}

@keyframes clockSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-main-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 25px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.cta-main-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    background: var(--gradient-primary);
}

.button-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.button-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-badge i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.final-message {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Responsividade para Final CTA Section */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-benefit {
        padding: 20px 15px;
    }
    
    .cta-main-button {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    .button-text {
        font-size: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 40px 0;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .final-benefits {
        gap: 15px;
    }
    
    .final-benefit {
        padding: 15px 12px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content span {
        font-size: 0.9rem;
    }
    
    .urgency-message {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .cta-main-button {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .button-text {
        font-size: 0.9rem;
    }
    
    .button-subtitle {
        font-size: 0.7rem;
    }
    
    .security-badges {
        gap: 10px;
    }
    
    .security-badge {
        font-size: 0.8rem;
    }
    
    .final-message {
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-info h3 {
    color: var(--accent-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-links h4 {
    color: var(--accent-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-primary);
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::before {
    width: 80%;
}

.footer-bottom {
    border-top: 1px solid var(--border-primary);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom i {
    color: var(--accent-primary);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsividade para Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info h3 {
        font-size: 1.6rem;
    }
    
    .footer-info p {
        font-size: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-info h3 {
        font-size: 1.4rem;
    }
    
    .footer-info p {
        font-size: 0.95rem;
    }
    
    .footer-links h4 {
        font-size: 1.2rem;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ===== MODAL PARA PROVA SOCIAL ===== */
.social-proof-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-proof-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 50%;
    max-height: 50%;
    
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.social-proof-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-image-container {
    padding: 10px;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 800px;
    max-height: 800px;
    object-fit: cover;
    border-radius: 0;
}

.modal-info {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
}

.modal-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.modal-category.financial {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.modal-category.testimonial {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

.modal-category.result {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
}

.modal-category.question {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.modal-category.success {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
}

.modal-category.support {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.modal-description {
    color: #495057;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Animações para o modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Responsivo para o modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
        margin: 10px;
    }
    
    .modal-image-container {
        max-height: 60vh;
    }
    
    .modal-info {
        padding: 15px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
    
    .modal-category {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .modal-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        border-radius: 15px;
    }
    
    .modal-image-container {
        max-height: 50vh;
    }
    
    .modal-info {
        padding: 12px;
    }
    
    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Seção da Área de Membros - Nova seção */
.members-area-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
}

.members-area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.members-area-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}

.members-area-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.members-area-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.members-area-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    background: var(--bg-tertiary);
}

.members-area-features .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.members-area-features .feature-icon i {
    font-size: 24px;
    color: var(--text-primary);
}

.members-area-features .feature-content h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.members-area-features .feature-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.members-area-preview {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-secondary);
    border: 1px solid var(--border-primary);
    position: sticky;
    top: 100px;
}

.preview-header {
    text-align: center;
    margin-bottom: 30px;
}

.preview-header h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.preview-header p {
    color: var(--accent-primary);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.steps-container {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-primary);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.preview-cta {
    text-align: center;
    margin-bottom: 30px;
}

.preview-cta .btn {
    width: 100%;
    margin-bottom: 15px;
}

.preview-cta .cta-subtitle {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.preview-stats .stat-item {
    padding: 15px 10px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.preview-stats .stat-number {
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.preview-stats .stat-label {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.members-area-benefits {
    margin-top: 60px;
    text-align: center;
}

.members-area-benefits h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.members-area-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.members-area-benefits .benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.members-area-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.members-area-benefits .benefit-card i {
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.members-area-benefits .benefit-card h4 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.members-area-benefits .benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade para a seção de membros */
@media (max-width: 768px) {
    .members-area-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .members-area-preview {
        position: static;
        margin-top: 20px;
    }
    
    .members-area-features .feature-item {
        padding: 20px;
    }
    
    .members-area-features .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .members-area-features .feature-icon i {
        font-size: 20px;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .members-area-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .members-area-section {
        padding: 60px 0;
    }
    
    .members-area-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .preview-header h3 {
        font-size: 20px;
    }
    
    .members-area-benefits h3 {
        font-size: 24px;
    }
    }

/* Estilos para a galeria de cards com imagens */
.members-area-gallery {
    
    text-align: center;
    padding: 0 20px;
}

.members-area-gallery h3 {
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 40px 0 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--border-primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--accent-primary);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 193, 7, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--bg-primary);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--bg-primary);
}

.overlay-content span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--bg-primary);
}

.card-caption {
    padding: 25px;
    text-align: left;
}

.card-caption h4 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-caption p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.gallery-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.gallery-cta .btn {
    margin-bottom: 15px;
    min-width: 300px;
}

.gallery-cta .cta-subtitle {
    color: var(--accent-primary);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Responsividade para a galeria */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .members-area-gallery {
        padding: 0 15px;
    }

    .members-area-gallery h3 {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .card-image {
        height: 200px;
    }

    .overlay-content i {
        font-size: 36px;
    }

    .overlay-content span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 5px;
    }

    .members-area-gallery {
        padding: 0 10px;
    }

    .members-area-gallery h3 {
        font-size: 24px;
    }

    .gallery-subtitle {
        font-size: 15px;
    }

    .card-caption {
        padding: 20px;
    }

    .card-caption h4 {
        font-size: 18px;
    }

    .gallery-cta .btn {
        min-width: 250px;
        font-size: 14px;
    }

    .overlay-content i {
        font-size: 32px;
    }

    .overlay-content span {
        font-size: 14px;
    }
}/* End custom CSS */