.hero {
    position: relative;
    padding: 145px 0 88px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* Formas decorativas */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    width: 520px;
    height: 520px;
    top: 90px;
    right: -180px;
    background: rgba(13, 79, 179, 0.07);
}

.hero-shape-two {
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: 80px;
    background: rgba(13, 79, 179, 0.08);
}

/* Estrutura principal */

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 700px;
}

/* Selo superior */

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* Título */

.hero h1 {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--black);
    font-size: clamp(54px, 5.2vw, 76px);
    line-height: 0.98;
    letter-spacing: -2.5px;
}

/* Texto secundário */

.hero-content > p {
    max-width: 650px;
    margin: 0 0 38px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
}

/* Botões */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* Selos comerciais */

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

/* Imagem principal */

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
}

.hero-circle {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    opacity: 0.14;
}

.hero-photo {
    position: relative;
    width: min(100%, 440px);
    height: 520px;
    overflow: hidden;
    border-radius: 38px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(2deg) scale(1.06);
}

/* Cards inferiores */

.hero-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 55px;
}

.hero-highlights div {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.hero-highlights strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: clamp(19px, 1.6vw, 24px);
    font-weight: 900;
    line-height: 1.15;
}

.hero-highlights span {
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
}

/* Tablets */

@media (max-width: 1100px) {

    .hero {
        padding: 130px 0 75px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
        gap: 50px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-image {
        min-height: 480px;
    }

    .hero-circle {
        width: 460px;
        height: 460px;
    }

    .hero-photo {
        width: 380px;
        height: 460px;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 767px) {

    .hero {
        padding: 112px 0 58px;
    }

    .hero-shape-one {
        width: 340px;
        height: 340px;
        top: 80px;
        right: -210px;
    }

    .hero-shape-two {
        width: 190px;
        height: 190px;
        left: -120px;
        bottom: 360px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-tag {
        padding: 9px 14px;
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1;
        letter-spacing: -1.8px;
    }

    .hero-content > p {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-badges {
        gap: 8px;
        margin-top: 26px;
    }

    .hero-badges span {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-image {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
    }

    .hero-photo {
        width: min(88%, 340px);
        height: 410px;
        border-radius: 28px;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 38px;
    }

    .hero-highlights div {
        min-height: 108px;
        padding: 19px 16px;
        border-radius: 18px;
    }

    .hero-highlights strong {
        font-size: 18px;
    }

    .hero-highlights span {
        font-size: 13px;
    }
}

/* Celulares pequenos */

@media (max-width: 430px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlights div {
        min-height: auto;
    }

    .hero-photo {
        width: 92%;
        height: 390px;
    }
}