/* ===== COMPATIBILIDADE CROSS-BROWSER MOBILE ===== */
/* Suporte completo para Safari, Chrome, Firefox, Edge, Samsung Browser, etc. */

/* Reset Universal para Máxima Compatibilidade */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Webkit/Blink específico (Safari, Chrome, Edge) */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Reset e Base */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0f;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 70, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 70, 200, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(120, 70, 255, 0.5));
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight-purple {
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #b8b8b8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 4rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 200px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cta-primary {
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    color: white;
}

.cta-primary:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 30px rgba(120, 70, 255, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(120, 70, 255, 0.4);
    box-shadow: 0 10px 30px rgba(120, 70, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #7846ff;
    border: 2px solid #7846ff;
}

.cta-secondary:hover {
    background: #7846ff;
    color: white;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.ai-logo-container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
}

.ai-logo-bg {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

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

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

@keyframes pulse {
    0%, 100% { 
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); 
    }
    50% { 
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05); 
    }
}

/* Benefícios Rápidos */
.trust-badge {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.quick-benefits {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Fallback para navegadores sem suporte ao Grid */
@supports not (display: grid) {
    .quick-benefits {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .benefit {
        -webkit-flex: 1 1 250px;
        -ms-flex: 1 1 250px;
        flex: 1 1 250px;
        margin-bottom: 1rem;
    }
}

.benefit {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.benefit:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.urgency-text {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

/* Seção Por que é Essencial */
.why-section {
    padding: 6rem 0;
    background: #0f0f1a;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-description {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Problema vs Solução */
.problems-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-box, .solution-box {
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid;
}

.problem-box {
    background: rgba(220, 38, 38, 0.1);
    border-color: #DC2626;
}

.solution-box {
    background: rgba(22, 163, 74, 0.1);
    border-color: #16A34A;
}

.problem-box h3, .solution-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-box ul, .solution-box ul {
    list-style: none;
}

.problem-box li, .solution-box li {
    padding: 0.5rem 0;
    font-weight: 500;
    color: #b8b8b8;
}

/* Automações Box */
.automations-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 3px solid #FFD700;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.automations-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.automations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.automation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.automation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.automation-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.automation-item strong {
    font-size: 1.1rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.automation-item p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Como Funciona - Timeline */
.how-it-works {
    padding: 6rem 0;
    background: #000;
    color: #fff;
}

.how-it-works .section-header h2 {
    color: #FFD700;
}

.how-it-works .section-description {
    color: #D1D5DB;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FFD700;
    transform: translateX(-50%);
}

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

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

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

.timeline-icon {
    background: #FFD700;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: #1F2937;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #D1D5DB;
}

.guarantee-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.guarantee-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Seção Depoimentos em Vídeo */
.testimonials-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 70, 255, 0.05), rgba(255, 70, 202, 0.05));
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Container de vídeos de depoimentos */
.video-testimonials-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

/* Slider de vídeos */
.video-testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Cada vídeo individual */
.video-testimonial {
    display: none;
    background: rgba(31, 41, 55, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(120, 70, 255, 0.3);
}

.video-testimonial.active {
    display: flex;
    flex-direction: column;
}

/* Wrapper do vídeo */
.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(120, 70, 255, 0.7);
    z-index: 3;
    font-family: serif;
}

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

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Informações do cliente */
.video-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
}

.video-client-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.video-client-title {
    color: #7846ff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.video-client-quote {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #7846ff;
}

.video-client-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #FFD700;
    font-weight: 700;
}

.video-client-description p {
    color: #b8b8b8;
    line-height: 1.7;
}

/* Navegação entre vídeos */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-prev, .nav-next {
    background: rgba(120, 70, 255, 0.2);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-prev:hover, .nav-next:hover {
    background: #7846ff;
}

.testimonial-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #7846ff;
    transform: scale(1.2);
}

/* Áreas de Atuação */
.expertise-areas {
    margin-top: 5rem;
    text-align: center;
}

.expertise-areas h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(120, 70, 255, 0.2);
}

.expertise-item:hover {
    background: rgba(120, 70, 255, 0.1);
    transform: translateY(-5px);
    border-color: #7846ff;
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.expertise-label {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .video-testimonial.active {
        flex-direction: column;
    }
    
    .video-wrapper {
        padding-top: 75%; /* Adjust for mobile */
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-client-name {
        font-size: 1.5rem;
    }
    
    .video-client-quote p {
        font-size: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Seção Nossa Equipe */
.team-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.team-profiles {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.team-profile {
    position: relative;
    width: 100%;
}

.team-profile:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
}

.profile-name::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: #FFD700;
}

.profile-bio {
    color: #b8b8b8;
}

.profile-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.profile-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .profile-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .profile-image {
        margin-bottom: 2rem;
    }
    
    .profile-name {
        font-size: 2rem;
    }
}

.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.testimonial-video {
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7846ff;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.testimonial-quote h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #ffffff;
}

.testimonial-author {
    color: #b8b8b8;
}

.testimonial-author strong {
    color: #7846ff;
}

.review-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(120, 70, 255, 0.3);
}

.badge-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.stars {
    color: #ffd700;
}

.badge-info span {
    color: #ffffff;
    font-weight: 600;
}

/* Seção I.P.O */
.ipo-section {
    padding: 6rem 0;
    background: #0f0f1a;
}

.ipo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.ipo-image {
    text-align: center;
}

.ipo-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #7846ff;
    filter: drop-shadow(0 0 20px rgba(120, 70, 255, 0.3));
}

.ipo-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: #7846ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* Seção Benefícios */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(120, 70, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #7846ff;
    box-shadow: 0 20px 40px rgba(120, 70, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
}

.benefits-cta p {
    font-size: 1.1rem;
    color: #b8b8b8;
    font-style: italic;
}

/* === SEÇÃO AGENTES - LAYOUT 2 COLUNAS === */
.agents-section {
    padding: 6rem 0;
    background: #000000;
}

.agents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.agent-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(120, 70, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 400px;
}

.agent-card:hover {
    transform: translateY(-5px);
    border-color: #7846ff;
    box-shadow: 0 20px 40px rgba(120, 70, 255, 0.3);
}

.agent-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    border: 3px solid #7846ff;
    box-shadow: 0 8px 16px rgba(120, 70, 255, 0.3);
    transition: all 0.3s ease;
    background-color: #1a1a2e;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.agent-card:hover .agent-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(120, 70, 255, 0.5);
    border-color: #ff6b9d;
}

.agent-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7846ff, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.agent-features li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 0.5rem;
    position: relative;
}

.agent-features li:last-child {
    margin-bottom: 0;
}

.agents-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Seção Fundadora */
.founder-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #7846ff;
    filter: drop-shadow(0 0 20px rgba(120, 70, 255, 0.3));
}

.founder-bio p {
    margin-bottom: 1.5rem;
    color: #b8b8b8;
    line-height: 1.8;
}

.founder-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(120, 70, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(120, 70, 255, 0.3);
}

.founder-cta h3 {
    color: #7846ff;
    margin-bottom: 1rem;
}

.founder-cta p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.founder-btn {
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.founder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(120, 70, 255, 0.4);
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background: #1F2937;
    color: #fff;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #D1D5DB;
    line-height: 1.7;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

/* Seção Contato */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
}

.contact-section .section-header h2 {
    color: #FFD700;
}

.contact-section .section-header span {
    color: #7846ff;
}

.social-proof {
    margin-top: 2rem;
}

.proof-badge {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

.form-header {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1rem;
}

.form-header p {
    color: #D1D5DB;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(120, 70, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(120, 70, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7846ff;
    box-shadow: 0 0 0 3px rgba(120, 70, 255, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.urgency-form {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: urgencyPulse 2s infinite;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.form-submit span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.form-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: #000000;
    border-top: 1px solid rgba(120, 70, 255, 0.2);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 75px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7846ff;
    margin-bottom: 0.5rem;
}

.footer-logo-section p {
    color: #b8b8b8;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7846ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8b8b8;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: #b8b8b8;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-legal a:hover {
    color: #7846ff;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.success-icon {
    font-size: 1.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #20b955);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.whatsapp-text {
    font-weight: 600;
}

/* === LAYOUT RESPONSIVO COMPLETO === */

/* Tablet e Mobile Grande (768px e abaixo) */
@media (max-width: 768px) {
    /* Container ajustado */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
        display: flex;
        align-items: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .logo-img {
        width: 33% !important;
        max-width: 106px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    /* Quick Benefits Mobile */
    .quick-benefits {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin-bottom: 2rem;
    }
    
    .benefit {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Botões Mobile */
    .cta-primary,
    .cta-secondary,
    .form-submit,
    .popup-btn,
    .whatsapp-float,
    .faq-question {
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .cta-primary {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    /* AI Logo Mobile - Tornar visível */
    .ai-logo-bg {
        font-size: 2rem !important;
        opacity: 0.6 !important;
        margin-top: 1rem;
    }
    
    /* Seções Mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    /* Problems/Solutions Mobile */
    .problems-solutions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-box,
    .solution-box {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    /* Automations Grid Mobile */
    .automations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .automation-item {
        padding: 1.2rem;
        border-radius: 12px;
        text-align: center;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 2rem;
    }
    
    .timeline-icon {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        border-radius: 12px;
        padding: 1.2rem;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        border-radius: 15px;
        text-align: center;
    }
    
    /* Agents Grid Mobile */
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .agent-card {
        padding: 1.5rem;
        min-height: 350px;
        border-radius: 20px;
    }
    
    .agent-photo {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }
    
    .agent-card h3 {
        font-size: 1.4rem;
    }
    
    .agent-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    /* FAQ Mobile */
    .faq-item {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-weight: 600;
    }
    
    .faq-answer {
        padding: 1.2rem;
        line-height: 1.6;
    }
    
    /* Form Mobile */
    .form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* Previne zoom no iOS */
        border-radius: 10px;
        padding: 0.8rem;
    }
    
    .form-submit {
        width: 100%;
        border-radius: 12px;
        font-weight: 600;
        padding: 1rem;
    }
    
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* WhatsApp Mobile - OCULTAR */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Desabilitar hover effects em mobile */
    .automation-item:hover,
    .benefit-item:hover,
    .agent-card:hover {
        transform: none;
    }
    
    /* Melhorar scroll e touch */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    p, li {
        line-height: 1.6;
    }
}

/* Mobile Pequeno (480px e abaixo) */
@media (max-width: 480px) {
    /* Container mais compacto */
    .container {
        padding: 0 0.8rem;
    }
    
    /* Hero mais compacto */
    .hero {
        padding: 1.5rem 0;
    }
    
    .logo-img {
        width: 39.6% !important;
        max-width: 92px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    /* Seções mais compactas */
    section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* Benefits ainda mais compactos */
    .quick-benefits {
        gap: 0.25rem;
    }
    
    .benefit {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    /* Botões otimizados */
    .cta-primary {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    /* Cards mais compactos */
    .problem-box,
    .solution-box {
        padding: 1.2rem;
    }
    
    .automation-item {
        padding: 1rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    /* Agents mais compactos */
    .agents-grid {
        gap: 1rem;
        max-width: 100%;
    }
    
    .agent-card {
        padding: 1.2rem;
        min-height: 320px;
    }
    
    .agent-photo {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }
    
    .agent-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .agent-features li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    /* Timeline mais compacto */
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    /* FAQ mais compacto */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Form mais compacto */
    .form-container {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
    
    /* Footer mais compacto */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* WhatsApp Mobile 480px - OCULTAR */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Popup mobile */
    .confirmation-popup.show {
        padding: 0.5rem;
    }
    
    .popup-content {
        border-radius: 16px;
        max-height: 90vh;
        overflow-y: auto;
        margin: 0.5rem;
    }
}

/* Mobile Muito Pequeno (360px e abaixo) */
@media (max-width: 360px) {
    /* Container ultra compacto */
    .container {
        padding: 0 0.6rem;
    }
    
    /* Hero ultra compacto */
    .hero {
        padding: 1rem 0;
    }
    
    .hero-logo {
        margin-bottom: 0.8rem;
    }
    
    .logo-img {
        width: 46.2% !important;
        max-width: 79px;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    /* Benefits ultra compactos */
    .quick-benefits {
        gap: 0.2rem;
    }
    
    .benefit {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
        line-height: 1.0;
    }
    
    /* Botões ultra compactos */
    .cta-primary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* AI Logo Mobile 360px - Ajustar para ultra pequeno */
    .ai-logo-bg {
        font-size: 1.5rem !important;
        opacity: 0.8 !important;
        margin-top: 0.6rem;
        line-height: 1.2;
    }
    
    /* Seções ultra compactas */
    section {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 0.8rem;
    }
    
    /* Cards ultra compactos */
    .problem-box,
    .solution-box {
        padding: 1rem;
    }
    
    .automation-item {
        padding: 0.8rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    /* Agents ultra compactos */
    .agent-card {
        padding: 1rem;
        min-height: 280px;
    }
    
    .agent-photo {
        width: 70px;
        height: 70px;
        border-radius: 6px;
    }
    
    .agent-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .agent-features li {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    /* Timeline ultra compacto */
    .timeline-item {
        padding-left: 45px;
        margin-bottom: 1.2rem;
    }
    
    .timeline-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 0.8rem;
    }
    
    /* FAQ ultra compacto */
    .faq-question {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .faq-answer {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Form ultra compacto */
    .form-container {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 16px;
    }
    
    /* Footer ultra compacto */
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    /* WhatsApp Mobile 360px - OCULTAR */
    .whatsapp-float {
        display: none !important;
    }
}

/* Orientação landscape em mobile */
@media (max-height: 600px) and (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 0.5rem 0;
    }
    
    .hero-logo {
        margin-bottom: 0.5rem;
    }
    
    .logo-img {
        width: 15% !important;
        max-width: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .quick-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .cta-container {
        margin-bottom: 0.5rem;
    }
    
    .ai-logo-container {
        margin-top: 0.5rem;
    }
    
    .ai-logo-bg {
        font-size: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .footer-logo-img,
    .agent-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* WebP específico para alta resolução */
    .agent-photo {
        image-rendering: optimizeQuality;
    }
}

/* Dark mode preference support */
@media (prefers-color-scheme: dark) {
    /* O site já usa dark theme, mas podemos ajustar alguns elementos */
    .notification-success {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.95));
    }
    
    .notification-error {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus improvements for accessibility */
@media (max-width: 768px) {
    /* Melhorar visibilidade do focus */
    button:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus {
        outline: 2px solid #7846ff;
        outline-offset: 2px;
    }
    
    /* Remove outline padrão */
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    a:focus-visible {
        outline: 2px solid #7846ff;
        outline-offset: 2px;
    }
}

/* === ESTILOS DE SEGURANÇA === */

/* Notificações de Segurança */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification.show {
    top: 20px;
}

.notification-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    border-left: 4px solid #22c55e;
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    border-left: 4px solid #ef4444;
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 1.2rem;
}

/* Campos com Erro de Segurança */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: "⚠️";
    font-size: 0.8rem;
}

/* Indicador de Campo Seguro */
.form-group.secure::after {
    content: "🔒";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-size: 1rem;
    opacity: 0.7;
}

.form-group {
    position: relative;
}

/* Loading Spinner de Segurança */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rate Limit Warning */
.rate-limit-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
    border-left: 4px solid #f59e0b;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: none;
    align-items: center;
    gap: 8px;
}

.rate-limit-warning.show {
    display: flex;
}

/* Honeypot Field (Campo Invisível) */
input[name="website_url"] {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Indicador de Segurança do Site */
.security-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #22c55e;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1000;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.security-badge::before {
    content: "🛡️";
    margin-right: 5px;
}

/* Validação Visual em Tempo Real */
.form-group input:valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.05);
}

/* Anti-Bot Protection Indicator */
.anti-bot-protection {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.anti-bot-protection::before {
    content: "🤖";
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Session Security */
.session-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    display: none;
    align-items: center;
    gap: 8px;
}

.session-warning.show {
    display: flex;
}

/* GDPR Compliance */
.privacy-notice {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 10px;
    line-height: 1.4;
}

.privacy-notice a {
    color: #7846ff;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Secure Connection Indicator */
.secure-connection {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #22c55e;
    margin-bottom: 15px;
}

.secure-connection::before {
    content: "🔐";
    font-size: 0.9rem;
}

/* Toast Notifications para Eventos de Segurança */
.security-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    min-width: 250px;
}

.security-toast.show {
    transform: translateX(0);
}

.security-toast::before {
    content: "⚠️";
    margin-right: 8px;
}

/* === POPUP DE CONFIRMAÇÃO === */

.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-popup.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(120, 70, 255, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: successPulse 1.5s ease-in-out infinite;
}

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

.popup-header h3 {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-body {
    padding: 20px 30px;
    color: #ffffff;
}

.popup-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.popup-body strong {
    color: #FFD700;
}

.next-steps {
    margin: 1rem 0;
}

.urgency-reminder {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    color: #FFD700;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
}

.popup-actions {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.popup-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.popup-btn-secondary {
    background: linear-gradient(135deg, #7846ff, #ff46ca);
    color: white;
    box-shadow: 0 4px 15px rgba(120, 70, 255, 0.3);
}

.popup-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 70, 255, 0.4);
}

/* Responsividade do Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
    }
    
    .popup-header,
    .popup-body,
    .popup-actions {
        padding: 20px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .success-icon-large {
        font-size: 3rem;
    }
    
    .popup-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        margin: 10px;
    }
    
    .popup-header,
    .popup-body,
    .popup-actions {
        padding: 15px;
    }
    
    .next-steps {
        padding: 15px;
    }
}

/* Responsividade consolidada acima - definições duplicadas removidas */

/* Otimizações de Imagem */
.agent-photo[loading="lazy"] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100px;
}

.agent-photo {
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@supports not (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
    .agent-photo {
        border-width: 2px;
        filter: brightness(1.1);
    }
}

.agent-photo:not([src]) {
    background: linear-gradient(45deg, #7846ff 25%, transparent 25%), 
                linear-gradient(-45deg, #7846ff 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #7846ff 75%), 
                linear-gradient(-45deg, transparent 75%, #7846ff 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: loading-pattern 2s linear infinite;
}

@keyframes loading-pattern {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 0, 20px 10px, 30px -10px, 10px 0px; }
}

/* ===== OTIMIZAÇÕES ESPECÍFICAS PARA MOBILE ===== */
/* Garantia de compatibilidade com TODOS os navegadores mobile */

/* Otimizações para Performance Mobile */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Suporte específico para diferentes navegadores mobile */
@supports (-webkit-appearance: none) {
    /* Safari/WebKit específico */
    input, button, select, textarea {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
    }
}

@supports (-moz-appearance: none) {
    /* Firefox Mobile específico */
    input, button, select, textarea {
        -moz-appearance: none;
    }
}

/* Correções específicas para Samsung Internet */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select, input, button {
        -webkit-appearance: none;
    }
}

/* Otimizações para Edge Mobile */
@supports (-ms-ime-align: auto) {
    .hero, .section {
        -ms-touch-action: manipulation;
        touch-action: manipulation;
    }
}

/* Garantir smooth scrolling em todos os navegadores */
html {
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

/* Otimizações para touch */
button, .cta-primary, .cta-secondary, .whatsapp-float, .faq-question {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

/* Viewport units seguros para todos os navegadores mobile */
.hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: stretch;
}

/* Fallbacks para propriedades CSS não suportadas */
@supports not (gap: 1rem) {
    .quick-benefits .benefit:not(:last-child) {
        margin-bottom: 1rem;
    }
    
    .cta-container .cta-primary,
    .cta-container .cta-secondary {
        margin-bottom: 1rem;
    }
}

/* Correções específicas para iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    input, textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 0;
    }
}

/* Garantir que todos os elementos interativos tenham tamanho mínimo de toque */
@media (max-width: 768px) {
    button, .cta-primary, .cta-secondary, .faq-question, .whatsapp-float,
    input, select, textarea, .benefit {
        min-height: 44px;
        min-width: 44px;
    }
}