/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir overflow horizontal em todos os elementos */
*, *::before, *::after {
    max-width: 100%;
}

/* Elementos que podem causar overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Containers e seções */
.container, .section, .hero-content, .portfolio-grid, .about-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevenir overflow em elementos com posição absoluta */
.hero-section, .portfolio-section, .about-section, .process-section, 
.exclusivity-section, .testimonials-section, .video-testimonials-section, .faq-section {
    overflow-x: hidden;
    position: relative;
}

/* Elementos que podem vazar para fora */
.title-accent, .carousel-container {
    overflow-x: hidden;
}

.profile-image, .timeline-container {
    overflow: visible;
}

:root {
    /* Cores Principais */
    --primary-black: #000000;
    --primary-blue-light: #01A8F2;
    --primary-blue-medium: #1760AD;
    --primary-blue-cyan: #02B0D5;
    --primary-blue-deep: #136291;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue-cyan));
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue-medium), var(--primary-blue-deep));
    --gradient-hero: linear-gradient(135deg, rgba(1, 168, 242, 0.1), rgba(2, 176, 213, 0.1));
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --container-max-width: 1400px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Sombras e Efeitos */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
    --blur-backdrop: blur(20px);
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Cores fixas - site é sempre dark */
:root {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    visibility: visible;
    opacity: 1;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Regra agressiva para mobile - prevenir qualquer overflow */
@media (max-width: 768px) {
    * {
        max-width: 100vw !important;
    }
    
    *::before, *::after {
        max-width: 100vw !important;
    }
    
    /* Elementos específicos que podem causar problemas */
    .hero-section, .portfolio-section, 
    .process-section, .exclusivity-section, .testimonials-section, 
    .faq-section, .final-cta-brutal-section {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    /* About section com overflow livre */
    .about-section {
        width: 100%;
        max-width: 100vw;
        overflow: visible;
        position: relative;
    }
    
    /* Containers principais */
    .container, .nav-container, .hero-container, 
    .about-content, .portfolio-grid {
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
}

/* ===== HEADER FIXO ===== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: var(--blur-backdrop);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    transition: var(--transition-smooth);
    cursor: pointer;
    filter: brightness(1) contrast(1.1);
}

.logo-img:hover {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.2);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

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

.cta-header-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(1, 168, 242, 0.3);
}

.cta-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 168, 242, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Compensar altura do header fixo */
    padding-bottom: 4rem; /* Espaço extra para o scroll indicator */
}


/* Canvas para Partículas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Conteúdo Principal */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

/* ===== SEÇÃO DE TEXTO HERO MODERNA ===== */
.hero-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

/* Título Moderno */
.modern-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.title-main {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: block;
}

.title-accent {
    font-size: clamp(2.5rem, 7vw, 5rem);
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: block;
    position: relative;
}

.title-accent::after {
    content: '|';
    position: absolute;
    right: -10px;
    top: 0;
    color: var(--primary-blue-light);
    animation: blink 1.5s infinite;
    -webkit-text-fill-color: var(--primary-blue-light);
}

@media (max-width: 768px) {
    .title-accent::after {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .title-accent::after {
        display: none;
    }
}

/* Subtítulo Moderno */
.modern-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.subtitle-line {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.subtitle-highlight {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--primary-blue-light);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    position: relative;
}

.subtitle-highlight::before {
    content: '';
    margin-right: 0px;
    font-size: 1.1em;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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



/* CTA Principal */
.hero-cta {
    margin: 3rem 0 5rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.cta-primary {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(1, 168, 242, 0.3);
    margin-bottom: 1rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(1, 168, 242, 0.4);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:active .cta-ripple {
    width: 300px;
    height: 300px;
}

.cta-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 60px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition-smooth);
}

.cta-primary:hover .cta-glow {
    opacity: 0.7;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05);
    }
}

.cta-subtitle {
    color: var(--primary-blue-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cta-subtitle i {
    color: var(--primary-blue-light);
}

.risk-free-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
    z-index: 5;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-blue-light);
    border-radius: 12px;
    margin: 0 auto 0.5rem auto;
    position: relative;
    display: block;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    margin: 1.5rem 0 0 0;
    text-align: center;
    width: 100%;
}

/* CTA Flutuante */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(1, 168, 242, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(1, 168, 242, 0.5);
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: pulse 2s infinite;
}

.floating-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.floating-cta:hover .floating-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ===== SEÇÕES GERAIS ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-accent {
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SEÇÃO PORTFÓLIO ===== */
.portfolio-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(19, 98, 145, 0.05), rgba(0, 0, 0, 0.8));
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 168, 242, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(2, 176, 213, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

.authority-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(1, 168, 242, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(1, 168, 242, 0.3);
    backdrop-filter: var(--blur-backdrop);
    transition: var(--transition-smooth);
}

.badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 10px 30px rgba(1, 168, 242, 0.2);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue-light);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== INSTRUÇÃO INTERATIVA ===== */
.portfolio-instruction {
    text-align: center;
    margin: 2rem 0 3rem 0;
    position: relative;
}

.instruction-text {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(1, 168, 242, 0.1);
    border: 1px solid rgba(1, 168, 242, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--primary-blue-light);
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.1);
}

.instruction-text i {
    font-size: 1.2rem;
    color: var(--primary-blue-light);
    animation: instructionPulse 2s ease-in-out infinite;
}

.instruction-text:hover {
    background: rgba(1, 168, 242, 0.15);
    border-color: var(--primary-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 168, 242, 0.2);
}

@keyframes instructionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mostrar apenas desktop por padrão */
.desktop-instruction {
    display: inline-flex;
}

.mobile-instruction {
    display: none;
}

/* Media queries para alternar as instruções */
@media (hover: none) and (pointer: coarse) {
    .desktop-instruction {
        display: none !important;
    }
    
    .mobile-instruction {
        display: inline-flex !important;
    }
}

/* Fallback para dispositivos móveis */
@media (max-width: 768px) {
    .desktop-instruction {
        display: none !important;
    }
    
    .mobile-instruction {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .instruction-text {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .instruction-text i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-instruction {
        margin: 1.5rem 0 2rem 0;
    }
    
    .instruction-text {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .instruction-text i {
        font-size: 1.5rem;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Inicialização dos cards */
.portfolio-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-card {
        opacity: 1;
        transform: none;
    }
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-blue-light), 
        var(--primary-blue-cyan), 
        var(--primary-blue-medium), 
        var(--primary-blue-deep)
    );
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(8px);
}

.portfolio-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(1, 168, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue-light);
}

.portfolio-card:hover::before {
    opacity: 0.6;
    filter: blur(12px);
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 18px;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 168, 242, 0.1) 0%,
        rgba(2, 176, 213, 0.1) 50%,
        rgba(19, 98, 145, 0.1) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1) saturate(1);
}

.portfolio-card:hover .card-image::before {
    opacity: 1;
}

.portfolio-card:hover .card-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 20, 40, 0.95) 30%,
        rgba(1, 50, 80, 0.9) 70%,
        rgba(0, 0, 0, 0.98) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px) saturate(1.2);
    border-radius: 18px;
}

.card-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(1, 168, 242, 0.15) 0%,
        rgba(0, 50, 100, 0.1) 50%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
    animation: overlayPulse 2s ease-in-out infinite alternate;
}

.portfolio-card:hover .card-overlay::before {
    width: 200%;
    height: 200%;
    animation: particleExpand 1.5s ease-out;
}

@keyframes overlayPulse {
    0% {
        backdrop-filter: blur(15px) saturate(1.2);
    }
    100% {
        backdrop-filter: blur(20px) saturate(1.4);
    }
}

@keyframes particleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0.3;
    }
}

.overlay-content {
    text-align: center;
    padding: 1.5rem;
    color: white;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: contentSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes contentSlideIn {
    0% {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(1, 168, 242, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.portfolio-card:hover .project-title::after {
    width: 60px;
    box-shadow: 0 0 10px var(--primary-blue-light);
}

.project-description {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    flex-shrink: 0;
    max-width: 100%;
    align-items: center;
}

.portfolio-card:hover .project-tech {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    background: rgba(1, 168, 242, 0.15);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    border: 1px solid rgba(1, 168, 242, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-tag::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: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-tag:hover {
    background: rgba(1, 168, 242, 0.3);
    border-color: var(--primary-blue-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(1, 168, 242, 0.3);
}

.tech-tag:hover::before {
    left: 100%;
}

/* ===== ESTADOS ESPECIAIS DOS CARDS ===== */
.portfolio-card.hovered {
    z-index: 10;
}

.portfolio-card.hovered .card-image {
    filter: brightness(1.2) contrast(1.3) saturate(1.4);
}

.portfolio-card.hovered .project-title {
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 2px 10px rgba(1, 168, 242, 0.3);
    }
    100% {
        text-shadow: 0 4px 20px rgba(1, 168, 242, 0.6);
    }
}

/* ===== EFEITOS DE ENTRADA DOS CARDS ===== */
@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) rotateX(-2deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.portfolio-card.animate-entrance {
    animation: cardEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== MELHORIAS DE PERFORMANCE ===== */
.portfolio-card,
.card-image,
.card-overlay,
.overlay-content {
    will-change: transform, opacity;
}

.portfolio-card:hover {
    will-change: transform, box-shadow, border-color;
}

/* ===== EFEITOS ADICIONAIS PARA MOBILE ===== */
@media (hover: none) and (pointer: coarse) {
    .portfolio-card:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    .portfolio-card:active .card-overlay {
        opacity: 1;
    }
    
    .portfolio-card:active .overlay-content {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVIDADE ESPECÍFICA PARA OVERLAY ===== */
@media (max-width: 768px) {
    .overlay-content {
        padding: 1rem;
    }
    
    .project-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 0.6rem;
    }
    
    .project-description {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        -webkit-line-clamp: 3;
        margin-bottom: 0.8rem;
    }
    
    .project-tech {
        gap: 0.3rem;
    }
    
    .tech-tag {
        padding: 0.25rem 0.6rem;
        font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    .overlay-content {
        padding: 0.8rem;
    }
    
    .project-title {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        line-height: 1.1;
    }
    
    .project-description {
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }
    
    .tech-tag {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
}

.view-project-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.view-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 168, 242, 0.4);
}

/* Carrossel de Clientes */
.clients-carousel {
    text-align: center;
    margin-top: 4rem;
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll-clients 20s linear infinite;
    gap: 3rem;
    width: max-content;
}

.client-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 1rem;
}

.client-item img {
    height: 60px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.client-item:hover img {
    opacity: 1;
}

.client-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .carousel-track {
        animation: scroll-clients 15s linear infinite;
        gap: 2rem;
    }

    .client-item img {
        height: 45px;
        max-width: 100px;
    }

    .client-item p {
        font-size: 0.7rem;
    }
}

/* ===== SEÇÃO SOBRE MIM ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: visible;
}

/* Animações Apple-style para About Section */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 168, 242, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(2, 176, 213, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.8;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    height: auto;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(60px);
}

.about-intro.animate {
    animation: appleSlideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes appleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-image {
    position: relative;
    width: min(500px, 90vw);
    height: min(500px, 90vw);
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-30px);
    perspective: 1000px;
}

.profile-image.animate {
    animation: appleSlideRight 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes appleSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-30px) rotateY(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--primary-blue-light);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 40px rgba(1, 168, 242, 0.2),
        0 0 0 0 rgba(1, 168, 242, 0.4);
    animation: profileGlow 3s ease-in-out infinite alternate;
}

.profile-img:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(1, 168, 242, 0.3),
        0 0 0 10px rgba(1, 168, 242, 0.1);
}

@keyframes profileGlow {
    0% {
        box-shadow: 
            0 20px 40px rgba(1, 168, 242, 0.2),
            0 0 0 0 rgba(1, 168, 242, 0.4);
    }
    100% {
        box-shadow: 
            0 25px 50px rgba(1, 168, 242, 0.3),
            0 0 0 5px rgba(1, 168, 242, 0.2);
    }
}

.profile-overlay {
    position: absolute;
    top: -5px;
    right: -5px;
}

@media (max-width: 768px) {
    .profile-overlay {
        top: 5px;
        right: 5px;
    }
}

.profile-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.3);
}

.intro-text {
    opacity: 0;
    transform: translateX(30px);
}

.intro-text.animate {
    animation: appleSlideLeft 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes appleSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
}

.about-title.animate {
    animation: appleTextReveal 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

@keyframes appleTextReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertise-tag {
    background: rgba(1, 168, 242, 0.1);
    color: var(--primary-blue-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(1, 168, 242, 0.3);
}

/* Timeline */
.timeline-container {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    z-index: 1;
}

.timeline-container.animate {
    animation: appleSlideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    opacity: 0;
}

.timeline-title.animate {
    animation: appleTextReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
}

.timeline.animate::before {
    animation: appleLineGrow 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes appleLineGrow {
    0% {
        transform: translateX(-50%) scaleY(0);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.timeline-item.animate:nth-child(1) {
    animation: appleTimelineReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.timeline-item.animate:nth-child(2) {
    animation: appleTimelineReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

.timeline-item.animate:nth-child(3) {
    animation: appleTimelineReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}

.timeline-item.animate:nth-child(4) {
    animation: appleTimelineReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards;
}

.timeline-item.animate:nth-child(5) {
    animation: appleTimelineReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.1s forwards;
}

@keyframes appleTimelineReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 
        0 10px 30px rgba(1, 168, 242, 0.4),
        0 0 0 10px rgba(1, 168, 242, 0.1);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(1, 168, 242, 0.4),
            0 0 0 10px rgba(1, 168, 242, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(1, 168, 242, 0.6),
            0 0 0 20px rgba(1, 168, 242, 0.05);
    }
}

.timeline-content {
    flex: 1;
    background: rgba(1, 168, 242, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(1, 168, 242, 0.2);
    backdrop-filter: var(--blur-backdrop);
    margin: 0 2rem;
    max-width: 350px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(1, 168, 242, 0.08);
    border-color: var(--primary-blue-light);
    box-shadow: 
        0 20px 40px rgba(1, 168, 242, 0.2),
        0 0 0 1px rgba(1, 168, 242, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
}

@media (max-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: calc(100vw - 4rem);
    }
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Autoridade */
.authority-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    clear: both;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.authority-card {
    background: rgba(1, 168, 242, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(1, 168, 242, 0.2);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    perspective: 1000px;
}

.authority-card.animate:nth-child(1) {
    animation: appleCardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.authority-card.animate:nth-child(2) {
    animation: appleCardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.authority-card.animate:nth-child(3) {
    animation: appleCardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}

@keyframes appleCardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.authority-card:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.03);
    border-color: var(--primary-blue-light);
    box-shadow: 
        0 20px 40px rgba(1, 168, 242, 0.3),
        0 0 0 1px rgba(1, 168, 242, 0.1);
    background: rgba(1, 168, 242, 0.08);
}

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

.authority-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* ===== SEÇÃO PROCESSO ===== */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(19, 98, 145, 0.05), rgba(0, 0, 0, 0.8));
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-marker {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 168, 242, 0.3);
}

.step-connector {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: rgba(1, 168, 242, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(1, 168, 242, 0.2);
    backdrop-filter: var(--blur-backdrop);
    transition: var(--transition-smooth);
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 15px 40px rgba(1, 168, 242, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(1, 168, 242, 0.2);
    color: var(--primary-blue-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.process-cta {
    text-align: center;
    background: rgba(1, 168, 242, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(1, 168, 242, 0.2);
}

.process-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 96, 173, 0.4);
}

/* ===== SEÇÃO IMPACTO FINANCEIRO ===== */
.financial-impact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(1, 168, 242, 0.05), rgba(0, 0, 0, 0.95));
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: rgba(1, 168, 242, 0.05);
    border: 1px solid rgba(1, 168, 242, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 20px 40px rgba(1, 168, 242, 0.2);
}

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

.result-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.result-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.impact-quote {
    text-align: center;
    background: rgba(1, 168, 242, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(1, 168, 242, 0.3);
}

.impact-quote h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.impact-quote p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== SEÇÃO PROVA DE AUTORIDADE ===== */
.authority-proof-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.authority-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .authority-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.proof-item {
    background: rgba(1, 168, 242, 0.05);
    border: 1px solid rgba(1, 168, 242, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    text-align: center;
}

.proof-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 15px 40px rgba(1, 168, 242, 0.2);
}

.proof-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.proof-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.proof-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.proof-detail {
    font-size: 0.9rem;
    color: var(--primary-blue-light);
    font-style: italic;
    font-weight: 500;
}

.authority-quote {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
}

.authority-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-style: italic;
}

.authority-quote cite {
    color: var(--primary-blue-light);
    font-weight: 500;
}

.credentials-showcase {
    background: rgba(1, 168, 242, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(1, 168, 242, 0.3);
    text-align: center;
}

.credentials-showcase h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.credential {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.credential-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue-light);
    line-height: 1;
}

.credential-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ===== SEÇÃO ESCASSEZ E URGÊNCIA ===== */
.scarcity-urgency-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(1, 168, 242, 0.1), rgba(0, 0, 0, 0.95));
    border-top: 3px solid var(--primary-blue-light);
    border-bottom: 3px solid var(--primary-blue-light);
}

.scarcity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.scarcity-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.scarcity-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scarcity-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(1, 168, 242, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(1, 168, 242, 0.3);
}

.scarcity-point i {
    color: var(--primary-blue-light);
    font-size: 1.2rem;
    min-width: 24px;
}

.scarcity-point p {
    color: var(--text-secondary);
    margin: 0;
}

.warning-box {
    background: rgba(1, 168, 242, 0.1);
    border: 2px solid var(--primary-blue-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.warning-box h3 {
    color: var(--primary-blue-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.warning-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.countdown-container h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.slots-remaining {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.slot.filled {
    background: var(--primary-blue-deep);
    color: white;
}

.slot.available {
    background: var(--primary-blue-light);
    color: white;
    animation: pulse 2s infinite;
}

.slot.taken {
    background: #6c757d;
    color: #333;
}

.countdown-text {
    color: var(--primary-blue-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.urgency-pressure h4 {
    color: var(--primary-blue-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pressure-list {
    list-style: none;
    padding: 0;
}

.pressure-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pressure-list li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: var(--primary-blue-light);
}

/* ===== CTA FINAL BRUTAL ===== */
.final-cta-brutal-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(1, 168, 242, 0.1));
    border-top: 5px solid var(--primary-blue-light);
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Mobile responsivo para choice-comparison */
@media (max-width: 768px) {
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choice-option {
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }
    
    /* Reorganizar ordem no mobile: header primeiro, lista no meio, resultado por último */
    .choice-header {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .choice-option ul {
        order: 2;
        margin-bottom: 1.5rem;
    }
    
    .choice-result {
        order: 3;
        margin-top: auto;
    }
}

.choice-option {
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.choice-option.loser {
    background: rgba(108, 117, 125, 0.1);
    border: 2px solid #6c757d;
}

.choice-option.winner {
    background: rgba(1, 168, 242, 0.1);
    border: 2px solid var(--primary-blue-light);
    transform: scale(1.05);
}

.choice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.choice-header i {
    font-size: 2rem;
}

.choice-option.loser .choice-header i {
    color: #6c757d;
}

.choice-option.winner .choice-header i {
    color: var(--primary-blue-light);
}

.choice-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.choice-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.choice-option li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
}

.choice-option.loser li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #6c757d;
}

.choice-option.winner li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue-light);
}

.choice-result {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.choice-result.losing {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.choice-result.winning {
    background: rgba(1, 168, 242, 0.2);
    color: var(--primary-blue-light);
}

.urgency-warning {
    background: rgba(1, 168, 242, 0.1);
    border: 2px solid var(--primary-blue-light);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.urgency-warning h3 {
    color: var(--primary-blue-light);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-warning p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.warning-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .warning-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .warning-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.warning-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warning-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue-light);
    line-height: 1;
}

.warning-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: center;
}

.final-cta-button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 60px;
    padding: 2rem 4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(1, 168, 242, 0.4);
}

.final-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(1, 168, 242, 0.5);
}

.cta-main-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-urgency-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Responsividade para o botão final */
@media (max-width: 768px) {
    .final-cta-button {
        padding: 1.2rem 2rem;
        border-radius: 25px;
        margin: 0 auto 1.5rem;
        max-width: 90%;
    }
    
    .cta-main-text {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
    
    .cta-urgency-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .final-cta-button {
        padding: 1rem 1.5rem;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .cta-main-text {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .cta-urgency-text {
        font-size: 0.75rem;
    }
}

.final-guarantee {
    background: rgba(1, 168, 242, 0.1);
    border: 2px solid var(--primary-blue-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.final-guarantee i {
    color: var(--primary-blue-light);
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.final-guarantee p {
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.final-guarantee small {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

/* ===== SEÇÃO EXCLUSIVIDADE ===== */
.exclusivity-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(19, 98, 145, 0.3));
    position: relative;
    overflow: hidden;
}

.exclusivity-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(1, 168, 242, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(1, 168, 242, 0.2);
}

.reason-item i {
    color: var(--primary-blue-light);
    font-size: 1.2rem;
    min-width: 24px;
}

.reason-item p {
    color: var(--text-secondary);
    margin: 0;
}

.exclusivity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(1, 168, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(2, 176, 213, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.exclusivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.exclusivity-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.exclusivity-title .title-line {
    display: block;
    margin-bottom: 0.2em;
}

.exclusivity-title .title-line:last-child {
    margin-bottom: 0;
}

.exclusivity-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.exclusivity-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.podcast-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.podcast-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(1, 168, 242, 0.3);
    transition: var(--transition-smooth);
    filter: brightness(1) contrast(1.1);
    object-fit: cover;
    min-height: 400px;
}

.podcast-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(1, 168, 242, 0.4);
    filter: brightness(1.1) contrast(1.2);
}

/* ===== SEÇÃO DEPOIMENTOS EM VÍDEO ===== */
.video-testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-testimonial-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(1, 168, 242, 0.15);
    background: rgba(1, 168, 242, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(1, 168, 242, 0.15);
    border-color: rgba(1, 168, 242, 0.35);
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: #0a0a14;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.video-testimonial-info {
    padding: 1rem 1.2rem;
    text-align: center;
}

.video-testimonial-info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.video-testimonial-info .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.video-testimonial-info .stars i {
    color: #FFD700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .video-testimonial-info {
        padding: 0.75rem 0.8rem;
    }

    .video-testimonial-info h4 {
        font-size: 0.85rem;
    }

    .video-testimonial-info .stars i {
        font-size: 0.75rem;
    }
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.4);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(1, 168, 242, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-blue-light);
    transform: scale(1.2);
}

/* ===== SEÇÃO FAQ ===== */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(19, 98, 145, 0.05), rgba(0, 0, 0, 0.8));
}

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

.faq-item {
    background: rgba(1, 168, 242, 0.05);
    border: 1px solid rgba(1, 168, 242, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-blue-light);
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(1, 168, 242, 0.1);
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.toggle-icon {
    color: var(--primary-blue-light);
    transition: var(--transition-smooth);
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FORMULÁRIO INTELIGENTE ===== */
.smart-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: var(--blur-backdrop);
}

.smart-form-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid rgba(1, 168, 242, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

.form-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 10%;
}

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

.form-container {
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Estilos do Formulário Inteligente */
.form-step {
    animation: slideInUp 0.5s ease-out;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-question {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.input-group {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.form-input, .form-textarea {
    flex: 1;
    background: rgba(1, 168, 242, 0.05);
    border: 2px solid rgba(1, 168, 242, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 20px rgba(1, 168, 242, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.next-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.4);
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.choice-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choice-option {
    background: rgba(1, 168, 242, 0.05);
    border: 2px solid rgba(1, 168, 242, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.choice-option:hover {
    border-color: var(--primary-blue-light);
    background: rgba(1, 168, 242, 0.1);
    transform: translateX(5px);
}

.choice-option.selected {
    border-color: var(--primary-blue-light);
    background: rgba(1, 168, 242, 0.15);
    box-shadow: 0 5px 20px rgba(1, 168, 242, 0.2);
}

.option-content {
    flex: 1;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.option-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.option-arrow {
    color: var(--primary-blue-light);
    transition: var(--transition-smooth);
}

.choice-option:hover .option-arrow {
    transform: translateX(5px);
}

.final-step {
    text-align: center;
    padding: 2rem 0;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    animation: successPulse 1s ease-out;
}

.final-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.final-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.final-info {
    background: rgba(1, 168, 242, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-blue-light);
    width: 20px;
}

.final-cta {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.loading-step {
    text-align: center;
    padding: 3rem 0;
}

.loading-animation {
    margin-bottom: 2rem;
}

.loading-circles {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-circles .circle {
    width: 12px;
    height: 12px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    animation: loadingBounce 1.4s ease-in-out infinite both;
}

.loading-circles .circle:nth-child(1) { animation-delay: -0.32s; }
.loading-circles .circle:nth-child(2) { animation-delay: -0.16s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 480px) {
    .hero-text-section {
        margin-bottom: 2rem;
    }
    
    .title-main {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .title-accent {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .title-accent::after {
        right: -10px;
    }
    
    .subtitle-line {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .subtitle-highlight {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }
    
    .hero-cta {
        margin: 1.5rem 0 5rem 0;
    }
    
    .cta-subtitle {
        margin-bottom: 3rem;
    }
    
    .scroll-indicator {
        bottom: 0.3rem;
    }
}

/* ===== RESPONSIVIDADE PARA NOVAS SEÇÕES ===== */
@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .hero-section {
        padding-top: 70px;
        padding-bottom: 3rem;
    }
    
    .title-main {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .title-accent {
        font-size: clamp(2.2rem, 7vw, 4rem);
    }
    
    .modern-title {
        margin-bottom: 1.5rem;
    }
    
    
    
    .hero-cta {
        margin: 2rem 0 4rem 0;
    }
    
    .cta-subtitle {
        margin-bottom: 3rem;
    }
    
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        bottom: 0.5rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Portfólio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .authority-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Sobre Mobile */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-image {
        width: min(400px, 85vw);
        height: min(400px, 85vw);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        margin: 0 !important;
        max-width: none;
    }
    
    /* Processo Mobile */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-connector {
        display: none;
    }
    
    /* Exclusividade Mobile */
    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .exclusivity-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .exclusivity-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .podcast-img {
        max-width: 100%;
        min-height: 250px;
        object-fit: cover;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
    }
    
    .question-content h3 {
        font-size: 1rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 130px;
    }
    
    .hero-section {
        padding-top: 80px;
        padding-bottom: 2.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .modern-title {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}

/* Media query específica para celulares muito pequenos */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 2rem;
    }
    
    .modern-title {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text-section {
        margin-bottom: 1.5rem;
    }
}

/* Media query para celulares extra pequenos */
@media (max-width: 320px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .modern-title {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .badge {
        padding: 0.8rem 1.5rem;
    }
    
    .portfolio-card {
        margin: 0 0.5rem;
    }
    
    .profile-image {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }
    
    .exclusivity-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .exclusivity-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .exclusivity-reasons {
        gap: 1rem;
    }
    
    .reason-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .reason-item i {
        font-size: 1.5rem;
    }
    
    .podcast-img {
        max-width: 100%;
        min-height: 200px;
        object-fit: cover;
    }
}

/* ===== PAYMENT GUARANTEE STYLES ===== */
.payment-guarantee {
    background: rgba(1, 168, 242, 0.1);
    border: 1px solid var(--primary-blue-light);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.payment-guarantee i {
    color: var(--primary-blue-light);
    font-size: 1.2rem;
}

.payment-security {
    background: rgba(1, 168, 242, 0.08);
    border-left: 3px solid var(--primary-blue-light);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.payment-security i {
    color: var(--primary-blue-light);
    font-size: 1.1rem;
}

.payment-assurance {
    background: rgba(1, 168, 242, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.payment-assurance i {
    color: var(--primary-blue-light);
    font-size: 1rem;
}

.faq-highlight {
    background: rgba(1, 168, 242, 0.1);
    border: 1px solid var(--primary-blue-light);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.faq-highlight i {
    color: var(--primary-blue-light);
    font-size: 1.1rem;
}

/* Responsive Payment Guarantee */
@media (max-width: 768px) {
    .payment-guarantee,
    .payment-security,
    .payment-assurance,
    .faq-highlight {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .payment-guarantee i,
    .payment-security i,
    .payment-assurance i,
    .faq-highlight i {
        font-size: 1.5rem;
    }
}

/* content-visibility removido - causa bugs em WebViews (Instagram, etc) */

/* ===== PERFORMANCE: Mobile - garantir visibilidade e LCP rapido ===== */
@media (max-width: 768px) {
    /* Hero - sem delay de animação para LCP */
    .hero-text-section {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .hero-cta {
        opacity: 1 !important;
        animation: none !important;
    }
    .scroll-indicator {
        opacity: 1 !important;
        animation: none !important;
    }
    .floating-cta {
        opacity: 1 !important;
        animation: none !important;
    }

    /* Seções que dependem de animações CSS para aparecer */
    .about-intro,
    .profile-image,
    .intro-text,
    .about-title,
    .timeline-container,
    .timeline-title,
    .timeline-item,
    .authority-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ===== PERFORMANCE: Respeitar prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
