/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b20;
    color: white;
}


/* ==================================================
   CORES
================================================== */

:root {
    --purple: #a94cff;
    --purple-light: #c46bff;
    --green: #25d978;
    --green-light: #a8ffbd;
    --background: #070b20;
    --background-light: #0c1230;
    --white: #ffffff;
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(128, 55, 255, 0.15),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(50, 255, 140, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06091c,
            #0b1030,
            #06091c
        );
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 55%,
            rgba(130, 40, 255, 0.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 55%,
            rgba(30, 255, 150, 0.12),
            transparent 25%
        );

    pointer-events: none;
}


/* ==================================================
   HEADER
================================================== */

.header {
    position: relative;
    z-index: 20;

    height: 95px;
    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(7, 10, 31, 0.75);

    backdrop-filter:
        blur(14px);
}


/* ==================================================
   LOGO DO HEADER
================================================== */

.logo {
    text-decoration: none;

    font-size:
        clamp(
            25px,
            2.3vw,
            36px
        );

    font-weight: 900;
    letter-spacing: -1.5px;
}


.logo-world {
    color: var(--purple-light);

    text-shadow:
        0 0 20px
        rgba(
            165,
            67,
            255,
            0.25
        );
}


.logo-magic {
    color: var(--green-light);

    text-shadow:
        0 0 20px
        rgba(
            168,
            255,
            189,
            0.25
        );
}


/* ==================================================
   MENU
================================================== */

.menu {
    display: flex;
    align-items: center;

    gap:
        clamp(
            25px,
            3vw,
            50px
        );
}


.menu a {
    position: relative;

    color: white;
    text-decoration: none;

    font-size:
        clamp(
            15px,
            1.1vw,
            20px
        );

    font-weight: 700;

    transition: 0.25s;
}


.menu a:hover {
    color: var(--green-light);
}


.menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--green)
        );

    transform:
        scaleX(0);

    transition: 0.25s;
}


.menu a:hover::after {
    transform:
        scaleX(1);
}


/* ==================================================
   MENU MOBILE
================================================== */

.menu-mobile {
    display: none;

    border: none;
    background: transparent;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


/* ==================================================
   CARTOLA
================================================== */

.hero-hat {
    position: absolute;

    z-index: 1;

    left: 50%;
    top: 54%;

    width:
        min(
            900px,
            70vw
        );

    transform:
        translate(
            -50%,
            -50%
        );

    pointer-events: none;

    opacity: 0.72;

    filter:
        drop-shadow(
            0 0 40px
            rgba(
                151,
                54,
                255,
                0.30
            )
        );
}


.hero-hat img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    position: relative;

    z-index: 5;

    min-height:
        calc(
            100vh - 95px
        );

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding:
        60px 20px 80px;
}


/* ==================================================
   EYEBROW
================================================== */

.eyebrow {
    color: var(--green-light);

    font-size:
        clamp(
            11px,
            1vw,
            17px
        );

    font-weight: 900;

    letter-spacing:
        0.28em;

    text-transform:
        uppercase;

    text-shadow:
        0 0 15px
        rgba(
            105,
            243,
            163,
            0.30
        );
}


.eyebrow span {
    margin: 0 7px;
}


/* ==================================================
   TÍTULO WORLD MAGIC
================================================== */

.hero h1 {
    position: relative;

    margin-top: 18px;

    font-size:
        clamp(
            75px,
            9.5vw,
            170px
        );

    line-height: 0.85;

    letter-spacing: -6px;

    font-weight: 950;
}


.world-title {
    color: var(--purple-light);

    text-shadow:
        0 0 35px
        rgba(
            165,
            67,
            255,
            0.35
        );
}


.magic-title {
    color: var(--green-light);

    text-shadow:
        0 0 35px
        rgba(
            100,
            255,
            155,
            0.30
        );
}


/* ==================================================
   DESCRIÇÃO
================================================== */

.hero-description {
    position: relative;

    max-width: 900px;

    margin-top: 40px;

    color: #f5f3fa;

    font-size:
        clamp(
            18px,
            2vw,
            31px
        );

    line-height: 1.45;

    text-shadow:
        0 3px 15px
        rgba(
            0,
            0,
            0,
            0.7
        );
}


/* ==================================================
   BOTÕES
================================================== */

.hero-buttons {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 40px;

    flex-wrap: wrap;
}


.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 230px;

    padding:
        16px 28px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 900;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}


.btn:hover {
    transform:
        translateY(-4px);
}


.btn-purple {
    color: white;

    background:
        linear-gradient(
            135deg,
            #8435ff,
            #c15aff
        );

    box-shadow:
        0 12px 35px
        rgba(
            140,
            50,
            255,
            0.40
        );
}


.btn-green {
    color: #061a10;

    background:
        linear-gradient(
            135deg,
            #15ca6e,
            #69f4a2
        );

    box-shadow:
        0 12px 35px
        rgba(
            20,
            210,
            110,
            0.30
        );
}


/* ==================================================
   WHATSAPP E INSTAGRAM
================================================== */

.social-buttons {
    position: fixed;

    z-index: 30;

    right: 28px;
    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 14px;
}


.social {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    text-decoration: none;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}


.social i {
    font-size: 32px;
}


.social:hover {
    transform:
        scale(1.1);
}


.whatsapp {
    background: #20d474;

    box-shadow:
        0 8px 25px
        rgba(
            32,
            212,
            116,
            0.25
        );
}


.instagram {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

    box-shadow:
        0 8px 25px
        rgba(
            253,
            29,
            29,
            0.20
        );
}


/* ==================================================
   SEÇÕES
================================================== */

.section {
    padding:
        100px 7%;

    text-align: center;

    background:
        var(--background);
}


.section:nth-child(even) {
    background:
        var(--background-light);
}


.section-title span {
    font-size: 30px;
}


.section-title h2 {
    margin-top: 10px;

    font-size:
        clamp(
            35px,
            5vw,
            62px
        );
}


.section-title p {
    max-width: 850px;

    margin:
        20px auto 0;

    color: #d8d6e2;

    font-size: 18px;

    line-height: 1.7;
}


/* ==================================================
   PERSONAGENS
================================================== */

.characters {
    background:
        var(--background);
}


.characters-grid {
    max-width: 1250px;

    margin:
        60px auto 0;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 25px;
}


/* ==================================================
   CARD DO PERSONAGEM
================================================== */

.character-card {
    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    min-height: 480px;

    border-radius: 22px;

    background:
        #111735;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}


.character-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(
            100,
            50,
            200,
            0.25
        );
}


/* ==================================================
   IMAGEM DO PERSONAGEM
================================================== */

.character-image {
    position: relative;

    height: 280px;

    overflow: hidden;

    flex-shrink: 0;
}


.character-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s;
}


.character-card:hover
.character-image img {
    transform:
        scale(1.07);
}


/* ==================================================
   BADGE FAVORITO
================================================== */

.character-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding:
        7px 13px;

    border-radius: 30px;

    color: white;

    font-size: 13px;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #ca60ff
        );

    box-shadow:
        0 5px 20px
        rgba(
            0,
            0,
            0,
            0.3
        );
}


/* ==================================================
   CONTEÚDO DO CARD
================================================== */

.character-content {
    position: relative;

    flex: 1;

    display: flex;

    flex-direction: column;

    padding:
        22px;

    text-align: left;
}


/* ==================================================
   TÍTULO DO PERSONAGEM
================================================== */

.character-content h3 {
    margin-bottom: 10px;

    color:
        var(--green-light);

    font-size: 21px;

    line-height: 1.25;
}


/* ==================================================
   DESCRIÇÃO DO PERSONAGEM
================================================== */

.character-content p {
    margin: 0;

    color:
        #d1cfda;

    font-size: 15px;

    line-height: 1.55;
}


/* ==================================================
   BOTÃO DO PERSONAGEM
================================================== */

.character-button {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 22px;

    padding:
        13px 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    text-align: center;

    text-decoration: none;

    color: white;

    font-size: 14px;

    font-weight: 900;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            #ca60ff
        );

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        opacity 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}


.character-card:hover
.character-button {
    opacity: 1;

    transform:
        translateY(0);
}


.character-button:hover {
    box-shadow:
        0 8px 25px
        rgba(
            169,
            76,
            255,
            0.35
        );
}


/* ==================================================
   SOBRE
================================================== */

.about-content {
    max-width: 1200px;

    margin: auto;
}


.about-cards {
    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 25px;
}


.about-card {
    padding:
        35px 25px;

    border-radius: 22px;

    background:
        #111735;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}


.about-icon {
    font-size: 50px;

    margin-bottom: 20px;
}


.about-card h3 {
    font-size: 25px;

    margin-bottom: 12px;
}


.about-card p {
    color: #d1cfda;

    line-height: 1.6;
}


/* ==================================================
   ANA PAULA
================================================== */

.ana-content {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

    text-align: left;
}


.ana-image {
    overflow: hidden;

    border-radius: 25px;
}


.ana-image img {
    width: 100%;

    display: block;
}


.small-title {
    color:
        var(--green-light);

    font-weight: 900;

    letter-spacing:
        0.2em;
}


.ana-text h2 {
    margin:
        12px 0 20px;

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    color:
        var(--purple-light);
}


.ana-text p {
    margin-bottom: 18px;

    color: #d4d2dd;

    line-height: 1.7;

    font-size: 17px;
}


.ana-text .btn {
    margin-top: 15px;
}


/* ==================================================
   CONTATO
================================================== */

.contact-content {
    max-width: 800px;

    margin: auto;
}


.contact-content > span {
    font-size: 50px;
}


.contact h2 {
    margin:
        20px 0;

    font-size:
        clamp(
            35px,
            5vw,
            60px
        );
}


.contact p {
    margin-bottom: 30px;

    color: #d2d0dc;

    font-size: 18px;
}


/* ==================================================
   FOOTER
================================================== */

footer {
    padding:
        45px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;

    background:
        #05081a;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}


.footer-logo {
    font-size: 25px;

    font-weight: 900;
}


.footer-logo span {
    color:
        var(--purple-light);
}


.footer-logo strong {
    color:
        var(--green-light);
}


footer p {
    color: #aaa8b7;
}


.footer-social {
    display: flex;

    gap: 20px;
}


.footer-social a {
    color:
        var(--green-light);

    text-decoration: none;

    font-weight: 700;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .characters-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .about-cards {
        grid-template-columns:
            1fr;
    }


    .ana-content {
        grid-template-columns:
            1fr;

        gap: 40px;
    }


    .hero-hat {
        width: 800px;

        max-width: 90vw;

        opacity: 0.65;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 760px) {

    .header {
        height: 78px;

        padding:
            0 20px;
    }


    .menu {
        display: none;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        padding: 25px;

        flex-direction: column;

        gap: 25px;

        background:
            rgba(
                7,
                10,
                31,
                0.97
            );
    }


    .menu.active {
        display: flex;
    }


    .menu-mobile {
        display: block;
    }


    .hero-hat {
        width: 700px;

        max-width: none;

        left: 50%;
        top: 53%;

        opacity: 0.50;

        transform:
            translate(
                -50%,
                -50%
            );
    }


    .hero-content {
        min-height:
            calc(
                100vh - 78px
            );

        padding:
            40px 20px 70px;
    }


    .eyebrow {
        font-size: 10px;

        letter-spacing:
            0.17em;
    }


    .hero h1 {
        font-size:
            clamp(
                60px,
                17vw,
                100px
            );

        letter-spacing:
            -3px;
    }


    .hero-description {
        margin-top: 28px;

        font-size: 17px;
    }


    .hero-description br {
        display: none;
    }


    .hero-buttons {
        width: 100%;

        gap: 12px;
    }


    .btn {
        width:
            min(
                100%,
                340px
            );
    }


    .social-buttons {
        right: 15px;

        bottom: 15px;

        gap: 10px;
    }


    .social {
        width: 53px;
        height: 53px;
    }


    .social i {
        font-size: 26px;
    }


    .characters-grid {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .character-card {
        min-height: 520px;
    }


    .character-image {
        height: 330px;
    }


    /*
       No celular o botão fica
       sempre visível.
    */

    .character-button {
        position: static;

        width: 100%;

        margin-top: auto;

        opacity: 1;

        transform: none;
    }


    .section {
        padding:
            75px 20px;
    }


    footer {
        flex-direction: column;

        text-align: center;
    }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 480px) {

    .logo {
        font-size: 24px;
    }


    .hero-hat {
        width: 620px;

        opacity: 0.42;
    }


    .hero h1 {
        font-size:
            18vw;
    }


    .hero-description {
        font-size: 16px;
    }


    .character-card {
        min-height: 470px;
    }


    .character-image {
        height: 280px;
    }


    .character-content {
        padding: 20px;
    }


    .character-content h3 {
        font-size: 20px;
    }


    .character-content p {
        font-size: 14px;
    }


    .character-button {
        padding:
            12px 16px;

        font-size: 13px;
    }


    .social-buttons {
        right: 12px;

        bottom: 12px;
    }


    .social {
        width: 50px;
        height: 50px;
    }


    .social i {
        font-size: 24px;
    }

}

