/* ============================================
   INDICAÇÃO DO CLIENTE - CUSTOM STYLES
   ============================================ */

/* Variáveis CSS */
:root {
    --roxo-primario: #6B21A8;
    --roxo-escuro: #4C1D95;
    --roxo-neon: #A855F7;
    --roxo-claro: #C084FC;
    --roxo-pastel: #E9D5FF;
    --bg-escuro: #0F172A;
    --bg-card: #1E1B4B;
    --texto-branco: #FFFFFF;
    --texto-cinza: #E5E7EB;
    --texto-cinza-escuro: #94A3B8;
    --sombra-roxa: 0 0 30px rgba(168, 85, 247, 0.3);
    --sombra-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --transicao: all 0.3s ease;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--texto-branco);
    color: var(--bg-escuro);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--roxo-neon);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
    outline: 3px solid var(--roxo-claro);
    outline-offset: 3px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--bg-escuro) 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 45px 35px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: var(--sombra-card), 0 0 30px rgba(168, 85, 247, 0.08);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-primario), var(--roxo-neon));
}

.intro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: var(--sombra-card), 0 0 40px rgba(168, 85, 247, 0.15);
}

.intro-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(107, 33, 168, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.9rem;
    color: var(--roxo-neon);
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: var(--transicao);
}

.intro-card:hover .intro-icon {
    background: linear-gradient(135deg, var(--roxo-primario), var(--roxo-neon));
    color: var(--texto-branco);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.intro-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--texto-branco);
    margin-bottom: 8px;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--roxo-claro);
    font-weight: 500;
    margin-bottom: 22px;
}

.intro-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-primario), var(--roxo-neon));
    border-radius: 3px;
    margin: 0 auto 22px;
}

.intro-text {
    font-size: 1.05rem;
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 18px;
}

.intro-text strong {
    color: var(--texto-branco);
    font-weight: 600;
}

.intro-highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(107, 33, 168, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--roxo-claro);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.intro-highlight-box i {
    font-size: 1.1rem;
}

.intro-description {
    font-size: 1rem;
    color: #E5E7EB;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.intro-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--texto-branco);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transicao);
}

.intro-whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.intro-whatsapp-link i {
    font-size: 1.3rem;
}

/* ============================================
   HEADER / LOGO
   ============================================ */
.site-header {
    padding: 20px 20px;
    text-align: center;
    background: #8B52FE;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: inline-block;
    max-width: 180px;
    transition: var(--transicao);
    line-height: 0;
}

.logo-container:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
}

.logo-container img {
    width: 100%;
    height: auto;
}

/* ============================================
   HERO SECTION - YOUSE
   ============================================ */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(76, 29, 149, 0.85) 50%,
        rgba(15, 23, 42, 0.92) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--roxo-primario), var(--roxo-neon));
    color: var(--texto-branco);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(168, 85, 247, 0.7); }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--texto-branco);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--roxo-neon), var(--roxo-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description {
    background: rgba(30, 27, 75, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    text-align: left;
}

.youse-legacy-offer {
    display: none;
}

.youse-offer-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.55), rgba(30, 27, 75, 0.92));
    border: 1px solid rgba(192, 132, 252, 0.32);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 45px rgba(15, 23, 42, 0.24);
}

.youse-offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-left: 5px solid var(--roxo-neon);
    pointer-events: none;
}

.youse-offer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #DDD6FE;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-description .youse-offer-text {
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.hero-description .youse-offer-text a {
    color: #F5D0FE;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(245, 208, 254, 0.55);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    overflow-wrap: anywhere;
}

.hero-description .youse-offer-text a:hover,
.hero-description .youse-offer-text a:focus {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

.hero-description p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-description .emoji-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--roxo-claro);
}

.hero-description .emoji-highlight .moeda {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8), 0 0 20px rgba(168, 85, 247, 0.5);
}

.hero-description .instruction {
    background: rgba(168, 85, 247, 0.15);
    border-left: 4px solid var(--roxo-neon);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    font-weight: 500;
    color: #FFFFFF;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--roxo-primario), var(--roxo-neon));
    color: var(--texto-branco);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--sombra-roxa);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.5);
}

.cta-button i {
    font-size: 1.1rem;
}

/* Hashtags */
/* ============================================
   REDES SOCIAIS SECTION
   ============================================ */
.social-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--bg-escuro) 100%);
    text-align: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 160px;
    transition: var(--transicao);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-card i {
    font-size: 2.5rem;
    transition: var(--transicao);
}

.social-card.facebook:hover i { color: #1877F2; }
.social-card.instagram:hover i { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.social-card.threads:hover i { color: var(--texto-branco); }
.social-card.whatsapp:hover i { color: #25D366; }

.social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E5E7EB;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto-branco);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transicao);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   DISCLAIMER / AVISO SECTION
   ============================================ */
.disclaimer-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--bg-escuro) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 45px 35px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    box-shadow: var(--sombra-card), 0 0 30px rgba(168, 85, 247, 0.08);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-primario), var(--roxo-neon));
}

.disclaimer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: var(--sombra-card), 0 0 40px rgba(168, 85, 247, 0.15);
}

.disclaimer-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(107, 33, 168, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.9rem;
    color: var(--roxo-neon);
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: var(--transicao);
}

.disclaimer-card:hover .disclaimer-icon {
    background: linear-gradient(135deg, var(--roxo-primario), var(--roxo-neon));
    color: var(--texto-branco);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.disclaimer-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--texto-branco);
    margin-bottom: 8px;
    line-height: 1.2;
}

.disclaimer-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--roxo-claro);
    font-weight: 500;
    margin-bottom: 22px;
}

.disclaimer-text {
    font-size: 1rem;
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text strong {
    color: var(--texto-branco);
    font-weight: 600;
}

.disclaimer-notice {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 22px;
    margin: 22px auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    max-width: 560px;
}

.disclaimer-notice i {
    font-size: 1.4rem;
    color: #60A5FA;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-notice p {
    font-size: 0.95rem;
    color: #E5E7EB;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(107, 33, 168, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--roxo-claro);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin: 10px auto 18px;
}

.disclaimer-highlight-box i {
    font-size: 1.05rem;
}

.disclaimer-reminder {
    font-size: 1.05rem;
    color: #25D366;
    margin-bottom: 22px;
    font-weight: 500;
}

.disclaimer-reminder i {
    margin-right: 5px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 40px 20px;
    text-align: center;
    background: var(--bg-escuro);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.footer-text {
    color: #E5E7EB;
    font-size: 1rem;
}

.footer-text a {
    color: var(--roxo-neon);
    transition: var(--transicao);
}

.footer-text a:hover {
    color: var(--roxo-claro);
}

/* ============================================
   SEÇÃO DE INDICAÇÕES - GRID 3 COLUNAS
   ============================================ */
.indicacoes-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-escuro) 0%, #1a1a2e 50%, var(--bg-escuro) 100%);
    position: relative;
    text-align: center;
}

.indicacoes-section .section-header {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 800px;
}

.indicacoes-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.indicacoes-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.indicacoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--roxo-neon), transparent);
}

.indicacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.indicacao-card {
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--sombra-card);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.indicacao-card:hover::before {
    transform: scaleX(1);
}

.indicacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-card), 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Logo/Icone */
.indicacao-logo {
    display: inline-block;
    max-width: 140px;
    margin: 0 auto 18px;
    line-height: 0;
    text-decoration: none;
    transition: var(--transicao);
    cursor: pointer;
}

.indicacao-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.indicacao-logo svg {
    width: 100%;
    height: auto;
}

.indicacao-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transicao);
}

.indicacao-card:hover .indicacao-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.indicacao-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--texto-branco);
    margin-bottom: 8px;
    line-height: 1.2;
}

.indicacao-text {
    font-size: 0.95rem;
    color: #E5E7EB;
    line-height: 1.65;
    margin-bottom: 12px;
    flex-grow: 1;
}

.indicacao-text strong {
    color: var(--texto-branco);
    font-weight: 600;
}

.indicacao-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transicao);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indicacao-cta:hover {
    transform: translateY(-3px);
}

.indicacao-cta i {
    font-size: 1.1rem;
}

/* ============================================
   BACKGROUNDS ESPECÍFICOS POR CARD
   ============================================ */

/* Nubank - Roxo */
.nubank-card {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
}
.nubank-card::before {
    background: linear-gradient(90deg, #820AD1, #A855F7);
}
.nubank-card:hover {
    border-color: rgba(130, 10, 209, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(130, 10, 209, 0.2);
}
.nubank-cta {
    background: linear-gradient(135deg, #820AD1, #A855F7);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(130, 10, 209, 0.35);
}
.nubank-cta:hover {
    box-shadow: 0 8px 30px rgba(130, 10, 209, 0.5);
}

/* Pi Network - Dourado/Amarelo */
.pi-card {
    background: linear-gradient(135deg, #1a1500 0%, #2d2400 100%);
}
.pi-card::before {
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
}
.pi-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.2);
}
.pi-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(252, 211, 77, 0.2));
    color: #FCD34D;
    border-color: rgba(245, 158, 11, 0.4);
}
.pi-card:hover .pi-icon {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
    color: #1a1500;
}
.pi-cta {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
    color: #1a1500;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.pi-cta:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Méliuz - Verde/Laranja */
.meliuz-card {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a3a1a 100%);
}
.meliuz-card::before {
    background: linear-gradient(90deg, #10B981, #F97316);
}
.meliuz-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.2);
}
.meliuz-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(249, 115, 22, 0.2));
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.4);
}
.meliuz-card:hover .meliuz-icon {
    background: linear-gradient(135deg, #10B981, #F97316);
    color: var(--texto-branco);
}
.meliuz-cta {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}
.meliuz-cta:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* Airbnb - Rosa/Vermelho */
.airbnb-card {
    background: linear-gradient(135deg, #1f0a0a 0%, #3d1a1a 100%);
}
.airbnb-card::before {
    background: linear-gradient(90deg, #FF5A5F, #FC642D);
}
.airbnb-card:hover {
    border-color: rgba(255, 90, 95, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 90, 95, 0.2);
}
.airbnb-icon {
    background: linear-gradient(135deg, rgba(255, 90, 95, 0.2), rgba(252, 100, 45, 0.2));
    color: #FF5A5F;
    border-color: rgba(255, 90, 95, 0.4);
}
.airbnb-card:hover .airbnb-icon {
    background: linear-gradient(135deg, #FF5A5F, #FC642D);
    color: var(--texto-branco);
}
.airbnb-cta {
    background: linear-gradient(135deg, #FF5A5F, #FC642D);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(255, 90, 95, 0.35);
}
.airbnb-cta:hover {
    box-shadow: 0 8px 30px rgba(255, 90, 95, 0.5);
}

/* 99 - Laranja/Amarelo */
.app99-card {
    background: linear-gradient(135deg, #1f1200 0%, #3d2400 100%);
}
.app99-card::before {
    background: linear-gradient(90deg, #F97316, #FBBF24);
}
.app99-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 115, 22, 0.2);
}
.app99-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    color: #F97316;
    border-color: rgba(249, 115, 22, 0.4);
}
.app99-card:hover .app99-icon {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: var(--texto-branco);
}
.app99-cta {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}
.app99-cta:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

/* Mercado Pago Point - Azul/Celeste */
.mp-point-card {
    background: linear-gradient(135deg, #0a1520 0%, #1a2d3d 100%);
}
.mp-point-card::before {
    background: linear-gradient(90deg, #009EE3, #00B1EA);
}
.mp-point-card:hover {
    border-color: rgba(0, 158, 227, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 158, 227, 0.2);
}
.mp-point-icon {
    background: linear-gradient(135deg, rgba(0, 158, 227, 0.2), rgba(0, 177, 234, 0.2));
    color: #00B1EA;
    border-color: rgba(0, 158, 227, 0.4);
}
.mp-point-card:hover .mp-point-icon {
    background: linear-gradient(135deg, #009EE3, #00B1EA);
    color: var(--texto-branco);
}
.mp-point-cta {
    background: linear-gradient(135deg, #009EE3, #00B1EA);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(0, 158, 227, 0.35);
}
.mp-point-cta:hover {
    box-shadow: 0 8px 30px rgba(0, 158, 227, 0.5);
}

/* Mercado Pago Conta - Azul Escuro/Amarelo */
.mp-conta-card {
    background: linear-gradient(135deg, #0a0f1f 0%, #1a1f3d 100%);
}
.mp-conta-card::before {
    background: linear-gradient(90deg, #002E6D, #FFD700);
}
.mp-conta-card:hover {
    border-color: rgba(0, 46, 109, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 46, 109, 0.2);
}
.mp-conta-icon {
    background: linear-gradient(135deg, rgba(0, 46, 109, 0.2), rgba(255, 215, 0, 0.2));
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
}
.mp-conta-card:hover .mp-conta-icon {
    background: linear-gradient(135deg, #002E6D, #FFD700);
    color: var(--texto-branco);
}
.mp-conta-cta {
    background: linear-gradient(135deg, #002E6D, #0047AB);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(0, 46, 109, 0.35);
}
.mp-conta-cta:hover {
    box-shadow: 0 8px 30px rgba(0, 46, 109, 0.5);
}

/* 99food - Vermelho/Rosa */
.app99food-card {
    background: linear-gradient(135deg, #1f0a0a 0%, #3d1a1a 100%);
}
.app99food-card::before {
    background: linear-gradient(90deg, #EF4444, #F472B6);
}
.app99food-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(239, 68, 68, 0.2);
}
.app99food-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(244, 114, 182, 0.2));
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.4);
}
.app99food-card:hover .app99food-icon {
    background: linear-gradient(135deg, #EF4444, #F472B6);
    color: var(--texto-branco);
}
.app99food-cta {
    background: linear-gradient(135deg, #EF4444, #F472B6);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}
.app99food-cta:hover {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

/* Rentcars - Vermelho/Branco */
.rentcars-card {
    background: linear-gradient(135deg, #1f0a0a 0%, #3d1a1a 100%);
}
.rentcars-card::before {
    background: linear-gradient(90deg, #E31937, #FF6B6B);
}
.rentcars-card:hover {
    border-color: rgba(227, 25, 55, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(227, 25, 55, 0.2);
}
.rentcars-icon {
    background: linear-gradient(135deg, rgba(227, 25, 55, 0.2), rgba(255, 107, 107, 0.2));
    color: #FF6B6B;
    border-color: rgba(227, 25, 55, 0.4);
}
.rentcars-card:hover .rentcars-icon {
    background: linear-gradient(135deg, #E31937, #FF6B6B);
    color: var(--texto-branco);
}
.rentcars-cta {
    background: linear-gradient(135deg, #E31937, #FF6B6B);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(227, 25, 55, 0.35);
}
.rentcars-cta:hover {
    box-shadow: 0 8px 30px rgba(227, 25, 55, 0.5);
}

/* Revolut - Rosa/Roxo */
.revolut-card {
    background: linear-gradient(135deg, #1f0a1f 0%, #3d1a3d 100%);
}
.revolut-card::before {
    background: linear-gradient(90deg, #FF4081, #8E24AA);
}
.revolut-card:hover {
    border-color: rgba(255, 64, 129, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 64, 129, 0.2);
}
.revolut-icon {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.2), rgba(142, 36, 170, 0.2));
    color: #FF4081;
    border-color: rgba(255, 64, 129, 0.4);
}
.revolut-card:hover .revolut-icon {
    background: linear-gradient(135deg, #FF4081, #8E24AA);
    color: var(--texto-branco);
}
.revolut-cta {
    background: linear-gradient(135deg, #FF4081, #8E24AA);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(255, 64, 129, 0.35);
}
.revolut-cta:hover {
    box-shadow: 0 8px 30px rgba(255, 64, 129, 0.5);
}

/* Shell Box - Amarelo/Vermelho */
.shellbox-card {
    background: linear-gradient(135deg, #1f1a00 0%, #3d3300 100%);
}
.shellbox-card::before {
    background: linear-gradient(90deg, #FBCE07, #DD1D21);
}
.shellbox-card:hover {
    border-color: rgba(251, 206, 7, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 206, 7, 0.2);
}
.shellbox-icon {
    background: linear-gradient(135deg, rgba(251, 206, 7, 0.2), rgba(221, 29, 33, 0.2));
    color: #FBCE07;
    border-color: rgba(251, 206, 7, 0.4);
}
.shellbox-card:hover .shellbox-icon {
    background: linear-gradient(135deg, #FBCE07, #DD1D21);
    color: var(--texto-branco);
}
.shellbox-cta {
    background: linear-gradient(135deg, #FBCE07, #DD1D21);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(251, 206, 7, 0.35);
}
.shellbox-cta:hover {
    box-shadow: 0 8px 30px rgba(251, 206, 7, 0.5);
}

/* Mercado Pago Point Smart 2 - Azul */
.mp-smart-card {
    background: linear-gradient(135deg, #0a0f1f 0%, #1a1f3d 100%);
}
.mp-smart-card::before {
    background: linear-gradient(90deg, #00B1EA, #0096D6);
}
.mp-smart-card:hover {
    border-color: rgba(0, 177, 234, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 177, 234, 0.2);
}
.mp-smart-icon {
    background: linear-gradient(135deg, rgba(0, 177, 234, 0.2), rgba(0, 150, 214, 0.2));
    color: #00B1EA;
    border-color: rgba(0, 177, 234, 0.4);
}
.mp-smart-card:hover .mp-smart-icon {
    background: linear-gradient(135deg, #00B1EA, #0096D6);
    color: var(--texto-branco);
}
.mp-smart-cta {
    background: linear-gradient(135deg, #00B1EA, #0096D6);
    color: var(--texto-branco);
    box-shadow: 0 4px 20px rgba(0, 177, 234, 0.35);
}
.mp-smart-cta:hover {
    box-shadow: 0 8px 30px rgba(0, 177, 234, 0.5);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .indicacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .indicacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .indicacao-card {
        padding: 30px 20px;
    }

    .indicacao-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .indicacao-title {
        font-size: 1.3rem;
    }

    .indicacao-text {
        font-size: 0.95rem;
    }

    .indicacao-cta {
        font-size: 0.95rem;
        padding: 12px 24px;
    }

    .hero-section {
        min-height: auto;
        padding: 20px 15px;
    }

    .hero-content {
        padding-top: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
        color: #FFFFFF;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        color: #FFFFFF;
    }

    .hero-description {
        padding: 20px;
    }

    .youse-offer-card {
        padding: 18px 18px 18px 20px;
    }

    .hero-description p {
        font-size: 1.15rem;
        color: #FFFFFF;
    }

    .hero-description .instruction {
        font-size: 1.05rem;
        color: #FFFFFF;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #E5E7EB;
    }

    .vantagem-title {
        font-size: 1.3rem;
    }

    .vantagem-text {
        font-size: 1.05rem;
        color: #E5E7EB;
    }

    .social-grid {
        gap: 15px;
    }

    .social-card {
        padding: 25px 30px;
        min-width: 140px;
    }

    .social-name {
        font-size: 1.1rem;
    }

    .hashtag {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .footer-text {
        font-size: 1rem;
        color: #E5E7EB;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description p {
        font-size: 1.05rem;
    }

    .youse-offer-kicker {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-description .youse-offer-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .vantagem-card {
        padding: 25px 20px;
    }

    .vantagem-title {
        font-size: 1.2rem;
    }

    .vantagem-text {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* ============================================
   SCROLLBAR CUSTOMIZADA
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-escuro);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--roxo-primario), var(--roxo-neon));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--roxo-neon), var(--roxo-claro));
}

/* ============================================
   NOVOS ESTILOS MODERNOS 2024
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-primario), var(--roxo-neon), var(--roxo-claro));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ============================================
   NAVBAR FIXA - GLASSMORPHISM
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0 20px;
    transform: translateY(-100%);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.main-nav.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--texto-branco);
    font-size: 1.1rem;
    transition: var(--transicao);
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .nav-menu[aria-hidden="true"] {
        display: flex;
    }
}

.nav-link {
    color: var(--texto-cinza);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transicao);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--roxo-neon);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--texto-branco);
    background: rgba(168, 85, 247, 0.1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--texto-branco);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transicao);
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--texto-branco);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-inverted {
    transform: rotate(180deg);
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(30, 27, 75, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 120px;
    transition: var(--transicao);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--roxo-neon), var(--roxo-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--texto-cinza-escuro);
    font-weight: 500;
}

/* Canvas Particles */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   TILT 3D CARDS
   ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.tilt-card .intro-icon,
.tilt-card .intro-title,
.tilt-card .intro-subtitle,
.tilt-card .intro-text,
.tilt-card .intro-highlight-box,
.tilt-card .intro-description,
.tilt-card .intro-whatsapp-link {
    transform: translateZ(30px);
}

/* ============================================
   INDICAÇÃO CARDS - NEON GLOW
   ============================================ */
.indicacao-card {
    position: relative;
    overflow: hidden;
}

.indicacao-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.indicacao-card:hover::after {
    opacity: 1;
}

/* Glow específico por card */
.nubank-card:hover { box-shadow: 0 20px 60px rgba(130, 10, 209, 0.25), 0 0 40px rgba(130, 10, 209, 0.1); }
.pi-card:hover { box-shadow: 0 20px 60px rgba(245, 158, 11, 0.25), 0 0 40px rgba(245, 158, 11, 0.1); }
.meliuz-card:hover { box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25), 0 0 40px rgba(16, 185, 129, 0.1); }
.airbnb-card:hover { box-shadow: 0 20px 60px rgba(255, 90, 95, 0.25), 0 0 40px rgba(255, 90, 95, 0.1); }
.app99-card:hover { box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25), 0 0 40px rgba(249, 115, 22, 0.1); }
.mp-point-card:hover { box-shadow: 0 20px 60px rgba(0, 158, 227, 0.25), 0 0 40px rgba(0, 158, 227, 0.1); }
.mp-conta-card:hover { box-shadow: 0 20px 60px rgba(0, 46, 109, 0.25), 0 0 40px rgba(255, 215, 0, 0.1); }
.app99food-card:hover { box-shadow: 0 20px 60px rgba(239, 68, 68, 0.25), 0 0 40px rgba(239, 68, 68, 0.1); }
.rentcars-card:hover { box-shadow: 0 20px 60px rgba(227, 25, 55, 0.25), 0 0 40px rgba(227, 25, 55, 0.1); }
.revolut-card:hover { box-shadow: 0 20px 60px rgba(255, 64, 129, 0.25), 0 0 40px rgba(255, 64, 129, 0.1); }
.shellbox-card:hover { box-shadow: 0 20px 60px rgba(251, 206, 7, 0.25), 0 0 40px rgba(251, 206, 7, 0.1); }

/* ============================================
   SECTION HEADER - GRADIENT TEXT
   ============================================ */
.section-header .highlight {
    background: linear-gradient(135deg, var(--roxo-neon), var(--roxo-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SOCIAL CARDS - GLASSMORPHISM
   ============================================ */
.social-card {
    position: relative;
    overflow: hidden;
    background: rgba(30, 27, 75, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.social-card:hover::before {
    left: 100%;
}

/* ============================================
   FAQ SECTION - GLASSMORPHISM ACCORDION
   ============================================ */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--bg-escuro) 100%);
    text-align: center;
}

.faq-section .section-header {
    margin-bottom: 50px;
}

.faq-section .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--texto-branco), var(--roxo-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.faq-section .section-subtitle {
    color: var(--texto-cinza);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(30, 27, 75, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transicao);
    box-shadow: var(--sombra-card);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.15);
}

.faq-item[open] {
    border-color: var(--roxo-neon);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25);
}

.faq-question {
    background: transparent;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--texto-branco);
    transition: var(--transicao);
    width: 100%;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.1);
    color: var(--roxo-claro);
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--roxo-claro);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
    color: var(--roxo-neon);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--texto-cinza);
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item[open] .faq-answer {
    max-height: 300px;
    padding: 20px 30px 25px;
}

.faq-answer p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item[open] .faq-answer {
        max-height: 250px;
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* ============================================
   RESPONSIVIDADE NAVBAR & NOVOS ELEMENTOS
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 5px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
        border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 15px 20px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .wave-divider {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* ============================================
   PERFORMANCE HINTS
   ============================================ */

/* Promote animated elements to their own GPU layer */
#hero-particles {
    will-change: transform;
}

.tilt-card {
    will-change: transform;
}

.hero-bg {
    will-change: transform;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .hero-bg {
        background-attachment: scroll;
    }
}

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

    #hero-particles {
        display: none;
    }

    .tilt-card,
    .hero-bg,
    .indicacao-card,
    .social-card,
    .stat-item,
    .faq-item {
        transform: none !important;
    }
}

/* Moved from JS injection — applied by IntersectionObserver */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-container {
    margin-top: 24px;
}

#search-input {
    width: 100%;
    max-width: 520px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--texto-branco);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
    margin: 0 auto;
}

#search-input::placeholder {
    color: var(--texto-cinza-escuro);
}

#search-input:focus {
    border-color: var(--roxo-neon);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.search-results-count {
    text-align: center;
    color: var(--texto-cinza-escuro);
    font-size: 0.85rem;
    margin-top: 10px;
    min-height: 1.2em;
}

.indicacao-card.search-hidden {
    display: none;
}

.search-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--texto-cinza-escuro);
    padding: 40px 20px;
    font-size: 1rem;
}
