/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Segoe UI", Arial, Helvetica, sans-serif;

    background: #000;

    color: #ffffff;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

}

/* ==========================================================
   HERO
========================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

/* Imagem */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url("../assets/imagens/piata-vista-da-serra_resultado.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    transform: scale(1.05);

    animation: heroZoom 25s ease-in-out infinite alternate;

}

/* Overlay cinematográfico */

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.58) 35%,
            rgba(0,0,0,.25) 65%,
            rgba(0,0,0,.18) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.50) 100%
        );

}

/* ==========================================================
   CONTEÚDO
========================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 80px));

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 40px;

    align-items: end;

}

/* ==========================================================
   COLUNA ESQUERDA
========================================================== */

.logo {

    width: 220px;

    margin-bottom: 45px;

}

.status {

    display: inline-flex;

    width: fit-content;

    padding: 10px 18px;

    margin-bottom: 22px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.20);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(12px);

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: 2px;

}

h1 {

    max-width: 700px;

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: .95;

    font-weight: 700;

    margin-bottom: 22px;

    text-shadow: 0 8px 30px rgba(0,0,0,.45);

}

.subtitle {

    max-width: 620px;

    font-size: clamp(1.15rem,2vw,1.45rem);

    line-height: 1.6;

    color: #F4D8A3;

    margin-bottom: 26px;

}

.description {

    max-width: 650px;

    font-size: 1.08rem;

    line-height: 1.9;

    color: rgba(255,255,255,.92);

}

/* ==========================================================
   ÍCONES
========================================================== */

.icones {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 45px;

    margin-bottom: 45px;

}

.icone {

    width: 115px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    padding: 18px 12px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,.10);

    transition: .35s;

}

.icone:hover {

    transform: translateY(-8px);

    background: rgba(255,255,255,.14);

}

.icone img {

    width: 48px;

    height: 48px;

    object-fit: contain;

}

.icone span {

    text-align: center;

    font-size: .88rem;

    line-height: 1.3;

}

/* ==========================================================
   RODAPÉ DA ÁREA
========================================================== */

.botao {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 34px;

    border-radius: 999px;

    background: #2E8B57;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.botao:hover {

    background: #37a56a;

    transform: translateY(-3px);

}

/* ==========================================================
   SELO
========================================================== */

.selo {

    justify-self: end;

    align-self: end;

}

.selo img {

    width: 150px;

    opacity: .92;

    transition: .4s;

}

.selo img:hover {

    transform: rotate(-5deg) scale(1.05);

}

/* ==========================================================
   ANIMAÇÃO
========================================================== */

@keyframes heroZoom {

    from {

        transform: scale(1.05);

    }

    to {

        transform: scale(1.14);

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 960px) {

    .hero-content {

        grid-template-columns: 1fr;

        gap: 30px;

        width: calc(100% - 50px);

        padding: 80px 0;

    }

    .logo {

        width: 180px;

        margin-bottom: 35px;

    }

    .selo {

        justify-self: start;

    }

    .selo img {

        width: 120px;

    }

}

/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 640px) {

    .hero-content {

        width: calc(100% - 32px);

        padding: 60px 0;

    }

    h1 {

        font-size: 2.7rem;

    }

    .subtitle {

        font-size: 1.1rem;

    }

    .description {

        font-size: 1rem;

        line-height: 1.7;

    }

    .icones {

        justify-content: center;

        gap: 12px;

    }

    .icone {

        width: calc(50% - 8px);

    }

    .botao {

        width: 100%;

        text-align: center;

    }

    .selo {

        justify-self: center;

    }

}