/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    position: relative;
    width: 90%;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: clamp(32px, 8vw, 110px);
    line-height: 0.9;
    color: var(--primary);
}

.hero-content p {
    margin-left: 5px;
    font-size: clamp(16px, 4vw, 45px);
    color: var(--primary);
}

.hero-img {
    position: relative;
}

.hero-img::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 90%;
    background: var(--accent);
    border-radius: 100px;
    left: 28%;
    top: -8%;
    z-index: 0;
}

.hero-img img {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.shape-right {
    position: absolute;
    border: 2px solid var(--accent);
    border-radius: 60px;
    width: 75%;
    height: 80%;
    left: 45%;
    top: -15%;
    border-radius: 80px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff5a3c, #e74c3c);
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    color: white;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
}

.products {
    padding: 60px 20px;
    background: #f5f6f7;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    width: 100vw;
}

.products-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
}

.products-subtitle {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 40px;
}

/* =========================
LINHAS
========================= */
.product-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-row .product-text {
    text-align: left;
}

.product-row.reverse .product-text {
    text-align: right;
}

/* =========================
IMAGEM
========================= */
.product-image {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-image img {
    width: 100%;
}

/* =========================
TEXTO
========================= */
.product-text {
    max-width: 500px;
    text-align: left;
    font-size: 13px;
    color: var(--primary);
}

.product-text h3 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 10px;
}


.product-text ul {
    list-style: none;
    padding-left: 0;
}

.product-text li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 5px;
    font-size: 12px;
}

.product-text li::before {
    content: "- ";
}

/* =========================
RODAPÉ
========================= */
.products-note {
    color: red;
    font-size: 12px;
}

/* ÁREAS */
.areas {
    width: 100vw;
    position: relative;
    background: transparent;
    overflow: visible;
}

.areas-content {
    padding: 50px 0%;
    text-align: center;
    background-color: #F8FFFF;
    width: 100vw;
    border-bottom: 4px solid var(--primary);
    z-index: 2;
    position: relative;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

/* cada item */
.areas-grid>div {
    width: 110px;
    /* largura fixa do bloco */
    text-align: center;
}

.areas-grid div {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.area {
    width: 110px;
    height: 110px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.area img {
    width: 60%;
}

.area:hover {
    background: var(--danger);
}

/* LINHAS AMARELAS */
.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    display: inline-block;
    background-color: #F8FFFF;
    color: var(--primary);
    padding: 0 20px;
    position: relative;
    line-height: 2;
    margin-bottom: 20px;
    z-index: 2;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38%;
    height: 2px;
    background: var(--danger);
    transform: translateY(-50%);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

@media (max-width: 1030px) {
    .product-row.reverse .product-text {
        text-align: left;
    }

    .hero {
        margin-top: 40px;
    }
}

/* RESPONSIVO */
@media (max-width: 1020px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 80px;
        padding: 40px 8% 170px 8%;
    }
}

@media (max-width: 768px) {
    .hero-img::before {
        width: 75%;
        height: 80%;
        border-radius: 70px;
    }

    .shape-right {
        width: 65%;
        height: 75%;
        border-radius: 70px;
    }

    .hero-img img {
        width: 100%;
    }

}

@media (max-width: 750px) {
    .areas-grid {
        padding: 0 10px;
    }
}