* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    color: #fff;
    background: transparent;
    border: none;
}

html,
body {
    font-family: "citrine-variable", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

body {
    background: #181912;
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: "citrine-variable", sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 2rem !important;
    text-wrap: pretty;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    text-wrap: balance;
}

.contact-featured {
    font-weight: 600;
}

/* ===== HERO ===== */
.hero {
    --hero-h: 100vh;
    --icon-w: calc(var(--hero-h) * 785.38 / 1080.06); 
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--hero-h);
    overflow: hidden;
}

@supports (height: 100dvh) {
    .hero {
        --hero-h: 100dvh;
    }
}

.icon-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--icon-w);
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: url("/assets/images/logo-form.svg");
    mask-image: url("/assets/images/logo-form.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right center;
    mask-position: right center;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: calc(100% - var(--icon-w));
    min-width: 0;
    padding: 30px 60px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 30px;
    
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 620px;
    padding: 60px 0;
}

.logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

p {
    line-height: 1.6;
    max-width: 450px;
    font-size: 22px;
    color: #cdd2a0;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 1;
}

.mark-phone {
    font-size: 0.85rem;
    font-weight: 100;
}

.contact-info mark {
    margin: 0 10px;
}

.contact-item__phone { 
    line-height: 1.1;
}

/* ----- RESPONSIVO ----- */

@media (min-width: 1560px){
    .content { 
        padding: 60px;
}
}

@media (max-width: 1200px) {
    body {
        overflow: auto;
        overflow-x: hidden;
    }

    .hero {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        justify-content: space-between;
    }

    .hero-content {
        order: 1;
        width: 100%;
        padding: 48px 24px 0;
        justify-content: center;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .content {
        min-height: 65vh;
        text-align: center;
        padding: 0;
    }

    .content p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        padding-bottom: 60px;
    }

    /* Ícone por baixo do texto, inteiro e centrado */
    .icon-gradient {
        position: relative;
        top: auto;
        right: auto;
        order: 2;
        width: min(80vw, 100%);
        height: auto;
        aspect-ratio: 1080 / 490.7;
        margin: 0 auto;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-image: url("/assets/images/logo-form-mobile.svg");
        mask-image: url("/assets/images/logo-form-mobile.svg");
    }

}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
    }
    .logo img {
        max-width: 180px;
    }

    .hero-content {
        padding: 48px 12px 0;
    }

    .content {
        min-height: auto;
    }

    .content-container {
        padding: 60px 10px;
    }
    
    .icon-gradient {
        width: min(70vw, 380px);
    }
    
    h1 {
        font-size: 1.35rem !important;
        text-wrap: balance;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 1.15rem;
    }

    h1,
    h2 {
        margin-inline: auto;
    }

    p {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 0.9rem;
        text-wrap: balance;
    }
}