html {
    zoom: 90%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 767px) {
    #testimonial-container,
    #testimonial-slider,
    #testimonial-track {
        max-width: 100vw;
        overflow: hidden;
    }
}

/* Headings mantêm Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Animacao e Efeito de Vidro */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-pulse { animation: pulse-whatsapp 2s infinite; }

.navbar-transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-item.active .faq-content { max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Animacao de Flutuacao para os Apps */
@keyframes float-icon {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-icon-alt {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    30% { transform: translateY(-15px) rotate(4deg) scale(1.05); }
    60% { transform: translateY(-6px) rotate(-2deg) scale(1.02); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}
@keyframes float-icon-pulse {
    0% { transform: translateY(0px) scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
    50% { transform: translateY(-16px) scale(1.08); box-shadow: 0 0 30px 10px rgba(255,255,255,0.08); }
    100% { transform: translateY(0px) scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
}
.float-animation {
    animation: float-icon 5s ease-in-out infinite;
}
.float-animation-alt {
    animation: float-icon-alt 7s ease-in-out infinite;
}
.float-animation-pulse {
    animation: float-icon-pulse 6s ease-in-out infinite;
}
.delay-1000 { animation-delay: 1s; }
.delay-2000 { animation-delay: 2s; }
.delay-3000 { animation-delay: 3s; }
.delay-1500 { animation-delay: 1.5s; }

/* CSS Especifico para o Carrossel de Depoimentos */
.testimonial-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}
::-webkit-scrollbar-button {
    width: 6px;
    height: 12px;
    background: #333;
    border: 1px solid #444;
}
::-webkit-scrollbar-button:hover {
    background: #555;
}
::-webkit-scrollbar-button:vertical:decrement {
    border-radius: 3px 3px 0 0;
}
::-webkit-scrollbar-button:vertical:increment {
    border-radius: 0 0 3px 3px;
}

/* HERO IMAGE SECTION */
.hero-section {
    position: relative;
    isolation: isolate;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.05);
    z-index: -2;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 10;
}

/* Enhanced Testimonials Carousel */
@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 40% / 40% 50% 60% 50%; }
    75% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -20px) scale(1.08); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}
.testimonial-blob {
    animation: blob-morph 18s ease-in-out infinite, blob-drift 22s ease-in-out infinite;
    pointer-events: none;
}
.testimonial-blob-2 {
    animation: blob-morph 22s ease-in-out infinite reverse, blob-drift 26s ease-in-out infinite reverse;
    pointer-events: none;
}

.btn-testimonial-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.25s ease, border-color 0.25s ease,
                box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-testimonial-glass:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18), 0 4px 20px rgba(0,0,0,0.15);
    /* Usa as custom properties do Tailwind para escalar SEM perder o translateY(-50%) */
    --tw-scale-x: 1.12;
    --tw-scale-y: 1.12;
}
.btn-testimonial-glass:active {
    --tw-scale-x: 0.96;
    --tw-scale-y: 0.96;
    transition-duration: 0.1s;
}

/* ─── Slider pages (criadas dinamicamente pelo JS) ───────────────────────── */
.slider-page {
    /* Estado inativo: absoluto e invisível */
    position: absolute;
    inset: 0;
    display: flex;
    gap: 24px;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    /* Sem transition aqui — o JS injeta inline durante a animação */
}

.slider-page.is-active {
    /* Estado ativo: in-flow, visível */
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Card wrapper dentro de cada página */
.t-card-wrapper {
    flex: 1;
    min-width: 0;
}

/* Mobile: 1 card por vez (já controlado pelo JS via buildSlider) */
@media (max-width: 767px) {
    /* Container do slider com padding menor nas laterais */
    #testimonial-container {
        padding-left: 48px !important;
        padding-right: 48px !important;
    }
}


.testimonial-card {
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e21818, #ff6b6b, #e21818);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}
.avatar-r { background: linear-gradient(135deg, #667eea, #764ba2); }
.avatar-m { background: linear-gradient(135deg, #f093fb, #f5576c); }
.avatar-c { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.avatar-f { background: linear-gradient(135deg, #43e97b, #38f9d7); }