:root {
    --brand1: #0a2a57;
    /* azul escuro */
    --brand2: #1b6aa6;
    /* azul */
    --brand3: #6ad4b4;
    /* verde água */
    --brand4: #a6d85a;
    /* verde */
    --bg0: #ffffff;
    --card: #ffffff;
    --text: #1a3c7d;
    --muted: #1a3c7d;
    --border: rgba(255, 255, 255, .08);
    --border-black: rgba(0, 0, 0, .08);
}

body {
    background:
        radial-gradient(1100px 600px at 15% 10%, rgba(27, 106, 166, .22), transparent 55%),
        radial-gradient(900px 600px at 90% 18%, rgba(106, 212, 180, .18), transparent 55%),
        radial-gradient(900px 700px at 35% 95%, rgba(166, 216, 90, .10), transparent 55%),
        var(--bg0);
    color: var(--text);
}

.container {
    max-width: 1400px;
    padding-left: 2rem; 
    padding-right: 2rem;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .65);
    border-bottom: 1px solid var(--border);
}

.brand-badge {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
}

.hero {
    padding-top: 4.75rem;
    padding-bottom: 3rem;
}

/* ====== PATROCINADORES CARROSSEL ====== */
.sponsors-carousel {
    overflow: hidden;
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: 1.5rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.sponsors-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollSponsors 15s linear infinite;
}

.sponsors-track img {
    height: 160px;
    max-width: 250px;
    object-fit: contain;
    margin: 0 2rem;
    transition: all 1s ease;
}

.sponsors-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 576px) {
    .hero {
        padding-top: 5.5rem;
    }
}

.hero-card {

    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: 0 24px 90px rgba(0, 0, 0, .45);
    border-radius: 1.25rem;
    overflow: hidden;
}

.hero-card-light {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: 0 24px 90px rgba(0, 0, 0, .10);
    border-radius: 1.25rem;
    overflow: hidden;
}

.hero-gradient {
    background:
        radial-gradient(700px 320px at 25% 0%, rgba(27, 106, 166, .35), transparent 60%),
        radial-gradient(600px 320px at 85% 5%, rgba(106, 212, 180, .25), transparent 60%),
        radial-gradient(600px 320px at 40% 110%, rgba(166, 216, 90, .18), transparent 60%);
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-weight: 800;
    letter-spacing: .2px;
}

.lead-muted {
    color: var(--muted);
}

.card-dark {
    background: rgba(11, 18, 32, .82);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
}

.card-light {
    background: rgba(34, 159, 213, .03);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
}

.icon-pill {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
}

.btn-brand {
    background: linear-gradient(90deg, var(--brand2), var(--brand3), var(--brand4));
    border: 0;
    color: #07101f;
    font-weight: 700;
}

.btn-brand:hover {
    filter: brightness(1.05);
}

.btn-outline-brand {
    border: 1px solid rgba(106, 212, 180, .55);
    color: var(--text);
    background: rgba(106, 212, 180, .06);
}

.btn-outline-brand:hover {
    background: rgba(106, 212, 180, .12);
    color: var(--text);
}

.chip {
        /* fundo e borda com mais destaque */
    color: var(--brand3);
    /* verde água */
    background: rgba(106, 212, 180, .10);
    border: 1px solid rgba(106, 212, 180, .28);

    /* garante contraste do ícone */
    text-shadow: 0 0 18px rgba(106, 212, 180, .25);
    font-size: 1.2rem;

    /* leve “glow” para leitura */
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    
    border-radius: 999px;
    padding: .35rem .7rem;
    color: var(--muted);
    font-size: .9rem;
}

.divider {
    border-top: 1px solid var(--border);
}

.divider-black {
    border-top: 1px solid var(--border-black);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

@media (min-width: 576px) {
    .countdown {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.count-item {
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .03);
    padding: .85rem;
    text-align: center;
}

.count-num {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.count-label {
    font-size: .85rem;
    color: var(--muted);
}

.faq .accordion-item {
    background: rgba(11, 18, 32, .82);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: .75rem;
}

.faq .accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 700;
}

.faq .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, .03);
    box-shadow: none;
}

.faq .accordion-body {
    color: var(--muted);
}

footer {
    border-top: 1px solid var(--border);
    background: rgba(5, 8, 15, .72);
}

.small-muted {
    color: var(--muted);
}

.card-dark .fw-bold,
.card-dark .section-title,
.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4 {
    color: var(--text) !important;
}

/* Texto secundário continua “muted” */
.card-dark .small-muted,
.card-dark .lead-muted {
    color: var(--muted) !important;
}

.card-title-strong {
    color: var(--text) !important;
    font-weight: 900;
    padding-left: .6rem;
    border-left: 3px solid rgba(106, 212, 180, .75);
}

/* Ícones com contraste em fundo escuro */
.icon-pill {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;

    /* fundo e borda com mais destaque */
    color: var(--brand3);
    /* verde água */
    background: rgba(106, 212, 180, .10);
    border: 1px solid rgba(106, 212, 180, .28);

    /* garante contraste do ícone */
    text-shadow: 0 0 18px rgba(106, 212, 180, .25);
    font-size: 1.2rem;

    /* leve “glow” para leitura */
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

/* Se algum ícone estiver dentro de link/botão e herdar cor errada */
.icon-pill i {
    color: inherit !important;
}

/* ====== INSCRIÇÕES (CARROSSEL) ====== */
.pricing-wrap {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(11, 18, 32, .55);
    border-radius: 1.5rem;
    padding: 1.25rem;
}

.pricing-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .75rem;
}

.pricing-topbar .hint {
    color: var(--muted);
    font-size: .95rem;
}

.pricing-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pricing-nav .btn {
    border-radius: 999px;
}

.pricing-carousel .carousel-inner {
    padding: .5rem 0;
}

.price-card {
    height: 100%;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
}

.price-card .card-body {
    padding: 1.35rem;
}

.price-card .card-title {
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.info-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
}

.price {
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    letter-spacing: -0.5px;
    margin-top: .75rem;
    margin-bottom: .75rem;
    color: var(--text);
}

.price small {
    font-size: .55em;
    font-weight: 800;
    opacity: .95;
}

.price-desc {
    color: var(--muted);
    min-height: 44px;
}

.btn-price {
    border-radius: 999px;
    padding: .85rem 1rem;
    font-weight: 800;
}

.hr-dashed {
    border-top: 1px dashed rgba(255, 255, 255, .18);
    margin: 1rem 0;
}

.benefits {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: .6rem;
}

.benefits li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, .92);
}

.benefits li .bi {
    margin-top: .15rem;
    opacity: .95;
}

.benefits li span {
    color: rgba(255, 255, 255, .86);
}

/* Destaque do card "ativo" (como na imagem) */
.price-card.featured {
    background: linear-gradient(180deg, rgba(92, 74, 255, .92), rgba(76, 60, 230, .92));
    border-color: rgba(106, 212, 180, .55);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

.price-card.featured .price,
.price-card.featured .card-title,
.price-card.featured .price-desc,
.price-card.featured .benefits li span {
    color: #ffffff;
}

.price-card.featured .info-dot {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
}

.price-card.featured .btn-price {
    background: linear-gradient(90deg, var(--brand3), var(--brand4));
    border: 0;
    color: #06101d;
}

.price-card:not(.featured) .btn-price {
    background: rgba(92, 74, 255, .95);
    border: 0;
    color: #fff;
}

.price-card:not(.featured) .btn-price:hover,
.price-card.featured .btn-price:hover {
    filter: brightness(1.05);
}

/* ====== CARROSSEL INSCRIÇÕES (SEM SOBREPOSIÇÃO) ====== */
.pricing-carousel .carousel-inner {
    padding: .5rem 0;
}

.pricing-carousel .carousel-item {
    gap: 1rem;
}

/* Cada card no slide */
.slide-card {
    flex: 0 0 100%;
    max-width: 100%;
}

/* 2 por slide (md) */
@media (min-width: 768px) {
    .pricing-carousel .carousel-item {
        display: flex;
    }

    .slide-card {
        flex: 0 0 calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }
}

/* 3 por slide (lg+) */
@media (min-width: 992px) {
    .slide-card {
        flex: 0 0 calc(33.333% - .66rem);
        max-width: calc(33.333% - .66rem);
    }
}

/* Evita “encolher” conteúdo e quebrar layout */
.price-card {
    height: 100%;
}

.price-card .card-body {
    display: flex;
    flex-direction: column;
}

.hr-dashed {
    margin: 1rem 0;
}

.benefits {
    margin-top: .25rem;
}

/* Corrige qualquer colapso de texto por herança */
.price-card * {
    position: static;
}

/* ===== INSCRIÇÕES: CARROSSEL HORIZONTAL (SEM CLONE / SEM SOBREPOSIÇÃO) ===== */
.pricing-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .5rem 0 .25rem;
    -webkit-overflow-scrolling: touch;
}

.pricing-track::-webkit-scrollbar {
    height: 10px;
}

.pricing-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
}

.pricing-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
}

.pricing-slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .pricing-slide {
        flex: 0 0 calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }
}

@media (min-width: 992px) {
    .pricing-slide {
        flex: 0 0 calc(33.333% - .66rem);
        max-width: calc(33.333% - .66rem);
    }
}

/* evita que os cards “apertem” e quebrem */
.price-card {
    height: 100%;
}

.price-card .card-body {
    display: flex;
    flex-direction: column;
}

/* Layout responsivo: em telas grandes mostra 3 por "slide" */
@media (min-width: 992px) {
    .pricing-carousel .carousel-item {
        display: flex;
        gap: 1rem;
    }

    .pricing-carousel .carousel-item>.col-lg-4 {
        flex: 0 0 auto;
        width: calc(33.333% - .66rem);
    }
}

/* Em telas médias, 2 por slide */
@media (min-width: 768px) and (max-width: 991.98px) {
    .pricing-carousel .carousel-item {
        display: flex;
        gap: 1rem;
    }

    .pricing-carousel .carousel-item>.col-md-6 {
        flex: 0 0 auto;
        width: calc(50% - .5rem);
    }
}

/* ====== BOTÃO FLUTUANTE WHATSAPP ====== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-floating-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pulse {
  display: inline-block;
  animation: pulseScale 1.5s infinite ease-in-out;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


