/* =========================================
   SEÇÃO 5 — TIPOS DE SITES
========================================= */

.website-types-section {
    position: relative;

    overflow: hidden;

    /* padding: 120px 0; */

    background: #fff;

    color: #0f1b26;
}


/* =========================================
   ELEMENTOS DECORATIVOS
========================================= */

.website-types-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    left: -300px;

    border-radius: 50%;

    border: 1px solid rgba(2, 190, 178, .10);

    pointer-events: none;
}


.website-types-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(2, 190, 178, .06);

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================
   CABEÇALHO
========================================= */

.types-eyebrow {
    color: #008679;
}


.types-title {
    color: #0f1b26;
}


.types-description {
    color: #66747c;
}


/* =========================================
   LINHAS DOS TIPOS
========================================= */

.website-type-row {
    position: relative;
    z-index: 2;

    margin-top: 40px;
}


.website-type-row:first-of-type {
    margin-top: 40px;
}


/* =========================================
   IMAGEM
========================================= */

.website-type-image {
    position: relative;

    height: 400px;

    overflow: hidden;

    border-radius: 18px;

    background: #0f1b26;

    box-shadow:
        0 25px 60px rgba(15, 27, 38, .12);
}


.website-type-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.website-type-row:hover .website-type-image img {
    transform: scale(1.04);
}


/* Overlay */

.website-type-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2, 190, 178, .12),
            transparent 50%,
            rgba(15, 27, 38, .15)
        );

    pointer-events: none;
}


/* =========================================
   NUMERAÇÃO
========================================= */

.website-type-number {
    position: absolute;

    z-index: 2;

    top: 22px;
    left: 22px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #02beb2;
    color: #0f1b26;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(2, 190, 178, .25);
}


/* =========================================
   CONTEÚDO
========================================= */

.website-type-content {
    max-width: 500px;

    padding: 30px 50px;
}


/* .website-type-row-reverse .website-type-content {
    margin-left: auto;
} */


/* Pequeno identificador */

.website-type-label {
    display: block;

    margin-bottom: 14px;

    color: #008679;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .09em;
    text-transform: uppercase;
}


/* Título */

.website-type-content h3 {
    margin: 0 0 18px;

    color: #0f1b26;

    /* font-size: clamp(30px, 3vw, 42px); */
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -.025em;
}


/* Descrição */

.website-type-content p {
    max-width: 450px;

    margin: 0 0 28px;

    color: #65747c;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.website-type-cta {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 7px;

    color: #008679;

    border-bottom: 2px solid #02beb2;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease,
        border-color .3s ease;
}


.website-type-cta i {
    font-size: 17px;

    transition:
        transform .3s ease;
}


.website-type-cta:hover {
    color: #02beb2;

    gap: 14px;

    border-color: #008679;

    text-decoration: none;
}


.website-type-cta:hover i {
    transform: translate(2px, -2px);
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px) {

    .website-types-section {
        padding: 90px 0;
    }

    .website-type-row {
        margin-top: 70px;
    }

    .website-type-content {
        padding: 35px 10px 0;
    }

    .website-type-row-reverse .website-type-content {
        margin-left: 0;
    }

    .website-type-image {
        height: 350px;
    }

}


@media (max-width: 767.98px) {

    .website-types-section {
        padding: 75px 0;
    }

    .website-type-row {
        margin-top: 60px;
    }

    .website-type-image {
        height: 300px;
    }

    .website-type-content {
        padding-top: 28px;
    }

    .website-type-content h3 {
        font-size: 32px;
    }

    .website-type-content p {
        font-size: 16px;
    }

}


@media (max-width: 575.98px) {

    .website-types-section {
        padding: 65px 0;
    }

    .website-type-row {
        margin-top: 50px;
    }

    .website-type-image {
        height: 250px;

        border-radius: 14px;
    }

    .website-type-content {
        padding: 25px 5px 0;
    }

    .website-type-content h3 {
        font-size: 29px;
    }

    .website-type-content p {
        font-size: 15px;
    }

}