/* AI.Sha - Custom Styles */

:root {
    --primary-color: #6e48aa;
    --secondary-color: #ff7eb9;
    --gradient: linear-gradient(135deg, #6e48aa 0%, #ff7eb9 100%);
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.navbar {
    background: rgba(110, 72, 170, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.navbar.scrolled {
    background: rgba(110, 72, 170, 0.85);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-top: calc(1rem + 75px); 
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}



.floating-card {
    background: rgb(255, 255, 255, 0.8);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    margin-top: 20%;
    
}

.floating-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    /* display: inline-block; */
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
    margin-right: 10%px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-table th {
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.comparison-table td {
    padding: 1.5rem;
    border: none;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.profession-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.profession-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.profession-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.profession-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 0; /* Removendo padding */
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none; /* Removendo border */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Estilos para cards de comparação */
.comparison-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: visible; /* Alterado para visible para não cortar o badge */
    margin-top: 20px; /* Espaço superior para o badge */
    text-align: center; /* Centralizando o conteúdo */
}

.comparison-card .card-header {
    background: var(--light-bg);
    border-bottom: 2px solid #e9ecef;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.comparison-card .card-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.comparison-card .card-body {
    padding: 2rem 1.5rem;
    text-align: center; /* Centralizando o conteúdo do corpo */
}

.comparison-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
    text-align: center; /* Centralizando o conteúdo dos itens */
}

.comparison-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.item-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: center; /* Centralizando títulos */
}

.item-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizando conteúdo */
    font-size: 1rem;
    text-align: center;
}

/* Card do funcionário (estilo padrão) */
.employee-card {
    border: 2px solid #e9ecef;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Card da AI.Sha - Design completamente novo baseado na CTA */
.aisha-card {
    background: linear-gradient(135deg, #6e48aa 0%, #ff7eb9 100%);
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    position: relative;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(110, 72, 170, 0.3);
    transition: all 0.3s ease;
}

.aisha-card .card-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.aisha-card .card-header h4 {
    color: var(--white);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.aisha-card .card-body {
    background: transparent;
    color: var(--white);
    padding: 1.5rem;
    text-align: center; /* Centralizando o conteúdo */
}

.aisha-card .item-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center; /* Centralizando títulos */
}

.aisha-card .item-content {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizando conteúdo */
    text-align: center;
}

.aisha-card .item-content i {
    color: #e8f5e8; /* Verde muito claro, quase branco */
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(232, 245, 232, 0.3));
}

.aisha-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(110, 72, 170, 0.4),
                0 0 30px rgba(255, 126, 185, 0.3);
}

/* Badge do card AI.Sha */
.aisha-card .premium-badge {
    position: absolute;
    top: -18px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: var(--white);
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}





/* Modern keyframe animations */








/* Enhanced item content styling for AI.Sha card */
.aisha-card .item-content {
    font-weight: 600;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aisha-card .item-content i {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(232, 245, 232, 0.3));
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: var(--transition);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-cta {
    margin-top: 1.5rem;
}

.step-cta .btn {
    background: var(--gradient);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.stars {
    color: #ffc107;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.cta-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    /* display: inline-flex;          
    align-items: center;           
    justify-content: center;        */
    gap: 0.5rem;                  
    border: 2px solid;
    border-color: #6247AA;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    color: #6247AA;
    font-size: 1.25rem;
    padding: auto auto auto auto; 
}



.btn-outline-light i {

    font-size: 20px;            
    line-height: 1;               
    margin-right: 20px;
    padding-right: 10px;  
    padding-top: 10px;
    margin-top: 10px;      
}

.como-funciona-botao {
    display: block;
    margin-right: auto;
    margin-left: auto;
    
}

.assistente-ativa {
    display: flex;
    align-items: center;
    margin-left: 37%;
}

#assistente {
    margin-left: 10px;
    margin-top: 15px;
    font-weight: 900;

}

.robo-aisha {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 200px;
}

.logo-header {
    width: 50px;
    height: 50px;
}

.text-colun {
    text-align: center;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .como-funciona-botao {
        display: flex;
        align-items: center;

    }

    .assistente-ativa{
    display: flex;
    align-items: center;
    margin-left: 27%;
    }

    .floating-card {
        margin-top: 10%;
       
        
    }

    #text-section {
        display: none;
    }
    .centralização-texto {
        text-align: center;
        
    }

    .coluna-1 { 
    display: none;
    }
}

html {
    scroll-behavior: smooth;
}

/* Estilos personalizados para o carrossel de funcionalidades */
.features-carousel-container {
    position: relative;
    padding: 2rem 60px;
    overflow: hidden; /* Mudando para hidden para evitar rolagem lateral */
    max-width: 1200px;
    margin: 0 auto;
}

.features-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Adicionando padding para as sombras */
    padding: 0 0 2rem 0;
}

.features-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* 6 cards = 200% para desktop */
}

.feature-slide {
    flex: 0 0 16.666%; /* 100% / 6 cards = 16.666% cada */
    padding: 0 15px;
    box-sizing: border-box;
}

/* Layout responsivo */
@media (min-width: 992px) {
    .features-track {
        width: 200%; /* 6 cards total */
    }
    
    .feature-slide {
        flex: 0 0 16.666%; /* Cada card ocupa 16.666% */
    }
}

/* Responsividade unificada para mobile (todos os dispositivos ≤991px) */
@media (max-width: 991px) {
    .features-track {
        width: 600%; /* 6 cards = 600% para mobile */
    }
    
    .feature-slide {
        flex: 0 0 16.666%; /* Mantém a mesma proporção */
        padding: 0 10px; /* Padding unificado para mobile */
    }
    
    .features-carousel-container {
        padding: 2rem 55px;
        overflow: hidden;
    }
    
    .features-carousel-prev,
    .features-carousel-next {
        z-index: 1001;
        background: rgba(110, 72, 170, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .features-carousel-prev {
        left: 8px;
    }
    
    .features-carousel-next {
        right: 8px;
    }
}

/* Controles do carrossel personalizados */
.features-carousel-prev,
.features-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-carousel-prev {
    left: 10px;
}

.features-carousel-next {
    right: 10px;
}

.features-carousel-prev:hover,
.features-carousel-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.features-carousel-prev .carousel-control-prev-icon,
.features-carousel-next .carousel-control-next-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-carousel-prev .carousel-control-prev-icon::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
}

.features-carousel-next .carousel-control-next-icon::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
}

/* Indicadores personalizados */
.features-indicators {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    margin: 0;
    justify-content: center;
}

.features-indicators button {
    width: 12px;
    height: 12px;
    background: rgba(110, 72, 170, 0.3);
    border: none;
    border-radius: 50%;
    transition: var(--transition);
    text-indent: unset;
    opacity: 1;
    cursor: pointer;
}

.features-indicators button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.features-indicators button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}



/* Melhorar a exibição dos cards no carrossel */
.feature-slide .feature-card {
    height: 100%;
    width: 100%;
    max-width: 350px;
    margin: 2rem auto; /* Mantendo margin para espaço das sombras */
}

/* Garantir que o carrossel não cause rolagem horizontal */
.features-carousel-container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.features-track {
    box-sizing: border-box;
}

/* Animação suave para os cards */
.feature-slide .feature-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Estilos para WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    max-width: calc(100vw - 50px);
    will-change: transform;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
    text-decoration: none;
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Estilos para a seção FAQ */
#faq {
    background: var(--light-bg);
}

.accordion {
    --bs-accordion-border-radius: var(--border-radius);
    --bs-accordion-inner-border-radius: calc(var(--border-radius) - 1px);
}

.accordion-item {
    background: var(--white);
    border: 1px solid rgba(110, 72, 170, 0.1);
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    border-radius: var(--border-radius) !important;
    box-shadow: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(110, 72, 170, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 2rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.faq-list li i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Estilos para CTA Teste Section */
.cta-teste-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    color: var(--white);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-cta-special {
    background: #25d366;
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    animation: whatsapp-pulse 2s ease-in-out infinite;
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
}

.btn-cta-special:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
    color: var(--white);
    text-decoration: none;
    animation-play-state: paused;
}

.btn-cta-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-cta-special:hover::before {
    left: 100%;
}

.btn-cta-special::after {
    content: '';
    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.3s ease, height 0.3s ease;
    z-index: -1;
}

.btn-cta-special:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta-special i {
    font-size: 1.4rem;
    animation: whatsapp-icon-bounce 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7),
                    0 0 0 10px rgba(37, 211, 102, 0.1),
                    0 0 0 20px rgba(37, 211, 102, 0.05);
    }
}

@keyframes whatsapp-icon-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Elementos flutuantes animados para CTA */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-random 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-element.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.floating-element.element-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 5s;
}

.floating-element.element-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.floating-element.element-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 4.5s;
}

.floating-element.element-5 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

.floating-element.element-6 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 60%;
    animation-delay: 0.5s;
    animation-duration: 4.8s;
}

@keyframes float-random {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta-special {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
        max-width: calc(100vw - 30px);
        margin-right: 0;
    }
    
    .whatsapp-float i {
        font-size: 1.6rem;
    }
    
    /* Otimizações para o card AI.Sha em mobile */
    .aisha-card {
        margin-bottom: 2rem;
        margin-top: 25px;
    }
    
    .aisha-card:hover {
        transform: translateY(-5px);
    }
    
    .aisha-card .premium-badge {
        top: -15px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

/* Elementos de fundo da seção hero */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-elements .bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-random 6s ease-in-out infinite;
}

.hero-bg-elements .bg-element-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.hero-bg-elements .bg-element-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.hero-bg-elements .bg-element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 5%;
    animation-delay: 1s;
    animation-duration: 4.5s;
}

/* Garantir que o conteúdo da seção hero fique acima dos elementos de fundo */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Correção para dispositivos muito pequenos */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 10px;
        position: fixed;
        max-width: none;
    }
    
    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

/* Garantir que o layout não tenha overflow horizontal */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Excluir elements do carrossel da regra de max-width global */
    .feature-slide, .feature-slide .feature-card, .features-track {
        max-width: none;
        box-sizing: border-box;
    }
}

