@font-face {
    font-family: 'Univers';
    src: url('assets/fonts/Univers/Univers.woff2') format('woff2'),
        url('assets/fonts/Univers/Univers.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Aplica o cursor personalizado apenas para elementos interativos */
a, button, [role="button"], input[type="button"], input[type="submit"] {
  cursor: url('assets/cursor/aim.png') 16 16, auto;
}


a:hover, button:hover, .hoverable:hover, .clicavel:hover {
  cursor: url('assets/cursor/aim.png') 16 16, auto;
}

:root {
    --primary: #0B1E45;
    --dark: #111;
    --light: #fff;
    --accent: #ffc107;
    --green: #28a745;
    --max-width: 1100px;
}

/* ===== Base reset ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Univers', sans-serif;
    cursor: url('assets/cursor/aim.png'), auto;
}

body {
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin-inline: auto;
}

/* ===== Header ===== */
header {
    background: var(--dark);
    color: var(--light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

header.scrolled {
    background: rgba(17, 17, 17, .65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

/* logo */
.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.logo img {
    height: 56px;
    width: auto;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 800;
}

/* desktop CTAs */
.nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
}

/* ===== BOTÃO COM EFEITO GLITCH HOLOGRÁFICO ===== */

.cta-main {
    position: relative;
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    overflow: hidden;
    transition: filter .25s ease;
    z-index: 1;
}

/* CORTES GLITCH NO FUNDO */
.cta-main::before,
.cta-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.7;
    mix-blend-mode: screen;
    z-index: -1;
}

.cta-main::before {
    animation: glitch1 1.8s infinite linear alternate-reverse;
}

.cta-main::after {
    animation: glitch2 2.1s infinite linear alternate-reverse;
}

/* SCANLINES */
.cta-main::after {
    background-image: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 3px);
    background-color: var(--primary);
}

/* RUIDO PIXELADO */
.cta-main::before {
    background-image: radial-gradient(rgba(255, 0, 0, 0.12) 1px, transparent 1px), radial-gradient(rgba(0, 255, 255, 0.12) 1px, transparent 1px), radial-gradient(rgba(255, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 4px 4px;
    background-blend-mode: screen;
    background-color: var(--primary);
}


.enrollment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
    font-weight: 600;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 0 0 2px #fff;
}

.avatars img:first-child {
    margin-left: 0;
}


/* ===== Keyframes agressivos ===== */
@keyframes glitch1 {
    0% {
        clip-path: inset(5% 0 80% 0);
        transform: translate(3px, -2px);
    }

    10% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-3px, 2px);
    }

    20% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(2px, -3px);
    }

    30% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(-2px, 3px);
    }

    40% {
        clip-path: inset(75% 0 10% 0);
        transform: translate(3px, -1px);
    }

    50% {
        clip-path: inset(90% 0 5% 0);
        transform: translate(-3px, 1px);
    }

    60%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

@keyframes glitch2 {
    0% {
        clip-path: inset(0 0 90% 0);
        transform: translate(-3px, 3px);
    }

    15% {
        clip-path: inset(25% 0 65% 0);
        transform: translate(3px, -2px);
    }

    30% {
        clip-path: inset(50% 0 40% 0);
        transform: translate(-2px, 3px);
    }

    45% {
        clip-path: inset(70% 0 20% 0);
        transform: translate(2px, -3px);
    }

    60% {
        clip-path: inset(85% 0 10% 0);
        transform: translate(-3px, 2px);
    }

    75%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}


.cta-header,
.cta-afiliados {
    padding: .65rem 1.2rem;
    font-weight: 700;
    font-size: .95rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: filter .25s ease;
}

.cta-header {
    background: var(--accent);
    color: var(--dark);
}

.cta-afiliados {
    background: var(--green);
    color: var(--light);
}

.cta-header:hover,
.cta-afiliados:hover {
    filter: brightness(.9);
}

/* hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.9rem;
    cursor: pointer;
}

/* mobile dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(17, 17, 17, .92);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 1rem;
    border-radius: 0 0 0 8px;
    flex-direction: column;
    gap: .8rem;
    min-width: 190px;
}

.mobile-menu a {
    display: block;
    text-align: center;
}

.mobile-menu.open {
    display: flex;
}

/* ===== Hero ===== */
.hero {
    padding: 4rem 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
}

.hero p {
    font-size: 1.30rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero .cta-main {
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: filter .25s ease;
}

.hero .cta-main:hover {
    filter: brightness(.9);
}

/* ===== Video ===== */
.vsl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vsl-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.vsl iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 8px;
}

.vsl-button {
    text-align: center;
}
















/* ===== CENTRAL CARDS ===== */



.step-cards {
    background: #0a0a12;
    padding: 3rem 0;
    color: white;
}

.step-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
}

.icon-box {
    background: #1e1e2f;
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 38px;
    height: 38px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.step-arrow {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

@media(max-width: 768px) {
    .step-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ===== Carousel ===== */

.campus-carousel {
    background: #f9f9f9;
    padding: 4rem 1rem;
    text-align: center;
}

.campus-subtitle {
    font-size: .9rem;
    letter-spacing: .5rem;
    color: #25345d;
    margin-bottom: .5rem;
}

.campus-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    justify-content: center;
}

.carousel-card {
    flex: 0 0 calc(33.33% - 1.5rem);
    max-width: calc(33.33% - 1.5rem);
    background: #ececec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #ddd;
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    height: 470px;
    /* Fixed height for all cards */
    width: 100%;
    /* Ensure consistent width within flex constraints */
}

.carousel-card:hover {
    transform: translateY(-6px);
}

.carousel-card img {
    width: 100%;
    height: 250px;
    /* Fixed height for images */
    object-fit: cover;
    /* Ensures image fits without distortion */
    display: block;
    margin-bottom: 1rem;
}

.carousel-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content from the top */
    text-align: center;
    padding: 1rem;
    background: #ececec;
    transition: background .3s, color .3s;
    overflow: hidden;
    /* Prevent content overflow */
}

.carousel-card:hover .carousel-content {
    background: #000;
    color: white;
}

.carousel-content h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: .5rem;
    color: inherit;
    min-height: 60px;
    /* Fixed height for title section */
    overflow: hidden;
    /* Prevent title overflow */
}

.carousel-content h4 img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.carousel-card:hover .carousel-content h4 img {
    filter: none;
}

.carousel-content p {
    font-size: .95rem;
    line-height: 1.5;
    padding: 0 1rem;
    overflow: hidden;
    /* Prevent text overflow without ellipsis */
    /* Removed: text-overflow: ellipsis, -webkit-line-clamp, -webkit-box-orient */
}

.carousel-btn {
    background: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    transition: background .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #eee;
}

@media(max-width: 767px) {
    .carousel-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 600px;
        /* Maintain fixed height on mobile */
    }
}



/* ===== Sections ===== */
section {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

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

.list-check li {
    list-style: none;
    position: relative;
    padding-left: 26px;
    margin-bottom: .75rem;
}

.list-check li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== Pricing ===== */
.pricing-box {
    background: var(--primary);
    color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-box h3 {
    font-size: 2.1rem;
    margin-bottom: .5rem;
    font-weight: 800;
}

.pricing-box p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.pricing-box .price {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.btn-buy {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .25s ease;
}

.btn-buy:hover {
    filter: brightness(.9);
}

/* ===== Guarantee ===== */
.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* ===== Footer ===== */
footer {
    background: #f3f3f3;
    padding: 2rem 0;
    text-align: center;
    font-size: .9rem;
    color: #666;
}

/* ===== Responsive ===== */
@media(max-width:600px) {
    .vsl iframe {
        height: 250px;
    }

    .logo img {
        height: 38px;
    }

    .logo span {
        font-size: 1.05rem;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
    }
}