
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


:root {
    --bg: #070807;
    --panel: #101210;
    --panel2: #0c0e0c;
    --text: #e8efe8;
    --muted: #a9b3a9;
    --black: #0b0b0b;
    --yellow: #ffcc00;
    --white: #ffffff;
    --gray: #bfbfbf;
    --line: rgba(255, 255, 255, .10);

    /* ✅ TROCA VERDE POR LARANJA */
    --accent: #ffe100;
    /* laranja principal */
    --accent2: #FFB200;
    /* laranja/âmbar para gradiente */

    --shadow: 0 18px 50px rgba(0, 0, 0, .55);
    --radius: 16px;

    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
  margin: 0;
  font-family: "Encode Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(255, 122, 0, .18), transparent 55%),
              radial-gradient(900px 500px at 90% 30%, rgba(255, 178, 0, .12), transparent 60%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}



.section {
    padding: 72px 0;
    position: relative;
}

.title {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.2;
    font-weight: bold;
    margin: 0 0 12px;
    letter-spacing: -.6px;

    & strong {
        color: var(--accent);
    }
}

i svg {
  width: 54px;
  height: 54px;
  stroke: currentColor;
}

.subtitle {
    margin: 0;
    color: var(--muted);
    font-weight: bold;
    line-height: 1.6;
    max-width: 62ch;
}

.subsubtitle {
 font-size: 20px;
 margin-bottom: 15px;
}

/* HERO */
.hero {
    padding: 28px 0 54px;
    position: relative;
    overflow: hidden;

    &::before {
        content: "";
        position: absolute;
        inset: -80px -120px auto -120px;
        height: 520px;
        background:
            radial-gradient(520px 320px at 20% 40%, rgba(255, 122, 0, .28), transparent 60%),
            radial-gradient(520px 320px at 80% 40%, rgba(255, 178, 0, .16), transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

    .hero__grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 38px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 18px 0;

        & .logo {
            width: 150px;
            height: auto;
        }

        & .tag {
            color: var(--muted);
            font-weight: 700;
            font-size: 12px;
            letter-spacing: .8px;
            text-transform: uppercase;
        }
    }

    .hero__copy {
        & .pill {
            margin-bottom: 14px;
        }

        & .lead {
            margin: 18px 0 24px;
            color: var(--muted);
            line-height: 1.65;
            max-width: 64ch;
        }

        & .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        & .small {
            margin-top: 12px;
            color: rgba(233, 255, 233, .60);
            font-size: 12px;
        }
    }

    .hero__visual {
        position: relative;
        min-height: 360px;

        & .card {
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
        }

        & .portrait {
            height: 420px;
            background:
                radial-gradient(600px 260px at 40% 30%, rgba(255, 122, 0, .22), transparent 55%),
                radial-gradient(380px 240px at 70% 65%, rgba(255, 178, 0, .16), transparent 60%),
                url("assets/mentor.jpg") center/cover no-repeat;
            filter: saturate(1.05) contrast(1.02);
        }

        & .badge {
            position: absolute;
            right: 18px;
            bottom: 18px;
            width: 120px;
            aspect-ratio: 1;
            border-radius: 999px;
            border: 1px solid rgba(255, 122, 0, .55);
            background:
                radial-gradient(circle at 30% 30%, rgba(255, 122, 0, .28), transparent 60%),
                rgba(0, 0, 0, .35);
            display: grid;
            place-items: center;
            text-align: center;
            padding: 10px;
            backdrop-filter: blur(6px);

            & b {
                display: block;
                font-size: 12px;
                line-height: 1.2;
                letter-spacing: .5px;
            }

            & span {
                display: block;
                margin-top: 6px;
                color: var(--accent);
                font-weight: 900;
                font-size: 14px;
            }
        }
    }
}

/* FORM */
.form-box {
    background: rgba(18, 18, 18, 0.9);
    /* fundo semi-transparente */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-box p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input {
    padding: 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

button {
    padding: 16px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.privacy {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

.benefits {
    margin-bottom: 40px;

}
.benefits ul {
    
    display: block;
    list-style-type: disc;
    margin-block-start: 0.4em;
    margin-block-end: 1em;
    padding-inline-start: 10px;
    unicode-bidi: isolate;

}




.benefits li {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits li::before {
    content: "✔";
    color: var(--yellow);
    font-weight: bold;
}

/* STRIP */
.strip {
    padding: 12px 0;
    background: linear-gradient(90deg, rgba(255, 122, 0, .98), rgba(255, 178, 0, .98));
    color: #120a02;

    & .strip__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-weight: 900;
        letter-spacing: .2px;
        text-align: center;
    }

    & .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #120a02;
        opacity: .85;
    }
}

/* EVENTO IDEAL */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;

    & .box {
        border: 1px solid var(--line);
        background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
        border-radius: var(--radius);
        padding: 22px;
        box-shadow: 0 18px 46px rgba(0, 0, 0, .35);

        & h3 {
            margin: 0 0 10px;
            font-size: 18px;
        }

        & p {
            margin: 0;
            color: var(--muted);
            line-height: 1.65;
        }
    }
}

/* ✅ CARROSSEL DASHBOARDS */
.dash-carousel {
    text-align: center;
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    & .subtitle {
        margin-inline: auto;
    }

    h2 {
        max-width: 700px;
    }

    & .carousel {
        margin-top: 22px;
        position: relative;
        border-radius: 18px;
        border: 1px solid rgba(255, 122, 0, .35);
        background:
            radial-gradient(700px 260px at 50% 0%, rgba(255, 122, 0, .16), transparent 60%),
            linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    & .viewport {
        overflow: hidden;
    }

    & .track {
        display: flex;
        transform: translateX(0);
        transition: transform .45s ease;
    }

    & .slide {
        min-width: 100%;
        padding: 18px;
        display: grid;
        place-items: center;

        & img {
            width: 100%;
            max-width: 980px;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .12);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
        }
    }

    & .nav {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;
        padding: 0 10px;

        & button {
            pointer-events: auto;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: 1px solid rgba(255, 122, 0, .45);
            background: rgba(0, 0, 0, .45);
            color: rgba(255, 255, 255, .9);
            font-weight: 900;
            cursor: pointer;
            display: grid;
            place-items: center;
            backdrop-filter: blur(6px);
            transition: transform .12s ease, filter .12s ease;
        }

        & button:hover {
            transform: translateY(-1px);
            filter: brightness(1.05);
        }

        & button:active {
            transform: translateY(0);
        }
    }

    & .dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 12px 0 16px;

        & button {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .25);
            background: rgba(255, 255, 255, .15);
            cursor: pointer;
            padding: 0;
        }

        & button[aria-current="true"] {
            background: var(--accent);
            border-color: rgba(255, 122, 0, .75);
        }
    }
}

/* 3 PILARES */
.pillars {
    text-align: center;
    .conter {
        display: flex;
        text-align: center;
        width: 100%;
        justify-content: center;
        h2 {
            max-width: 700px;
            text-align: center;
        }
    }

    & .subtitle {
        margin-inline: auto;
    }


    & .grid {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    & .p {
        border: 1px solid var(--line);
        background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
        border-radius: 14px;
        padding: 22px;
        text-align: left;
        box-shadow: 0 16px 42px rgba(0, 0, 0, .35);

        & .icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            background: rgba(255, 122, 0, .12);
            border: 1px solid rgba(255, 122, 0, .25);
            display: grid;
            place-items: center;
            margin-bottom: 14px;

            svg {
                width: 35px;
                height: auto;
            }
        }


        & p {
            margin: 0;
            color: var(--muted);
            line-height: 1.6;
            font-size: 14px;
        }

        & .tag {
            margin-top: 12px;
            display: inline-flex;
            gap: 8px;
            align-items: center;
            color: rgba(233, 255, 233, .75);
            font-weight: 700;
            font-size: 12px;

            &::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: var(--accent);
            }
        }
    }

    & .cta {
        margin-top: 22px;
    }
}

/* PREÇO */
.pricing {
    text-align: center;

    & .card {
        margin: 26px auto 0;
        width: min(520px, 100%);
        border: 1px solid rgba(255, 122, 0, .38);
        border-radius: 18px;
        background:
            radial-gradient(500px 260px at 50% 0%, rgba(255, 122, 0, .16), transparent 60%),
            linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
        box-shadow: var(--shadow);
        padding: 26px 22px;
    }

    & .kicker {
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 12px;
        color: rgba(233, 255, 233, .7);
    }

    & ul {
        list-style: none;
        padding: 0;
        margin: 14px 0 18px;
        display: grid;
        gap: 8px;
        color: var(--muted);
        line-height: 1.55;

        & li {
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(0, 0, 0, .22);
            border-radius: 12px;
            padding: 10px 12px;
        }
    }

    & .price {
        margin: 14px 0 8px;

        & .from {
            color: rgba(233, 255, 233, .65);
            font-weight: 700;
            text-decoration: line-through;
            opacity: .7;
        }

        & .row {
            margin-top: 10px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        & .installments {
            color: rgba(233, 255, 233, .75);
            font-weight: 800;
            font-size: 16px;
        }

        & .big {
            font-size: 54px;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--accent);
        }

        & .note {
            margin-top: 6px;
            color: rgba(233, 255, 233, .55);
            font-size: 12px;
        }
    }

    & .logos {
        margin-top: 14px;
        display: flex;
        gap: 18px;
        justify-content: center;
        flex-wrap: wrap;
        opacity: .8;

        & span {
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(0, 0, 0, .22);
            border-radius: 999px;
            padding: 8px 12px;
            color: rgba(233, 255, 233, .65);
            font-weight: 700;
            font-size: 12px;
        }
    }
}

footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    color: rgba(233, 255, 233, .55);

    & .row {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        font-size: 12px;
    }
}

.person {
    position: relative;
    background: #f3c911;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    h2 {
        color: black;
    }

    @media (max-width: 900px) {
        height: auto;
    }

    .first-content {
        display: flex;
        padding-top: 50px;
        @media (max-width: 900px) {
            flex-direction: column-reverse;
        }

        .left-side {
            flex: 1;
            text-align: left;
            z-index: 60;

            @media (max-width: 900px) {
                padding-right: 0;
            }

            h3 {
                font-weight: 300;
                font-size: 25px;
                color: black;
            }

            p {
                font-size: 17px;
                line-height: 30px;
                color: black;
                margin-bottom: 20px;
            }

            img {
                width: 100px;
                height: auto;
            }
        }

        .right-side {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;

            img {
                position: absolute;
                width: 380px;
                height: auto;
                                bottom: 0;

                @media (max-width: 900px) {
                    position: relative;
                    width: 285px;
                }
            }

            @media (max-width: 900px) {
                &::after {
                    content: "";
                    position: absolute;
                    left: -10%;
                    bottom: -10%;
                    width: 100%;
                    height: 28%;
                    background-image: url("../imagens/cover.svg");
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    z-index: 1;
                }
            }
        }
    }
}

@media (max-width: 960px) {
    .hero {
        .hero__grid {
            grid-template-columns: 1fr;
        }

        .hero__visual {
            min-height: 320px;
        }

        .hero__visual .portrait {
            height: 360px;
        }
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .pillars {
        .grid {
            grid-template-columns: 1fr;
        }
    }

    .mentor {
        .grid {
            grid-template-columns: 1fr;
        }
    }
}