/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;

    background: #f7f9fc;
    color: #10213d;

    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}


/* =========================
   VARIÁVEIS
========================= */

:root {
    --azul-escuro: #072d63;
    --azul: #0d55b8;
    --azul-claro: #1b73e8;

    --branco: #ffffff;
    --fundo: #f7f9fc;
    --fundo-azulado: #edf4ff;

    --texto: #14233d;
    --texto-claro: #62708a;

    --borda: rgba(7, 45, 99, 0.12);

    --sombra:
        0 20px 50px rgba(19, 45, 82, 0.10);

    --container: 1180px;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* =========================
   CABEÇALHO
========================= */

.cabecalho {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(7, 45, 99, 0.08);

    transition: 0.3s ease;
}

.cabecalho-conteudo {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}
.instagram-cabecalho {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #072d63;
    font-size: 24px;
    text-decoration: none;

    border: 1px solid rgba(7, 45, 99, 0.15);
    border-radius: 50%;

    transition: 0.3s ease;
}

.instagram-cabecalho:hover {
    color: #fff;
    background: #072d63;
    border-color: #072d63;

    transform: translateY(-2px);
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

}

.logo-img {
    width: 115px;
    height: auto;
    display: block;
}

.logo-texto {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.logo-texto strong {
    color: var(--azul-escuro);

    font-size: 18px;
    font-weight: 800;
}

.logo-texto span {
    margin-top: 3px;

    color: var(--texto-claro);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.04em;
}
@media (max-width: 580px) {

    .logo-img {
        width: 100px;
    }

}


/* =========================
   MENU
========================= */

.menu {
    display: flex;
    align-items: center;

    gap: 28px;
}

.menu a {
    position: relative;

    color: #33425c;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--azul);

    transition: 0.25s ease;
}

.menu a:hover {
    color: var(--azul);
}

.menu a:hover::after {
    width: 100%;
}


/* =========================
   BOTÃO CABEÇALHO
========================= */

.botao-cabecalho {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--azul),
            var(--azul-claro)
        );

    color: var(--branco);

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(13, 85, 184, 0.22);

    transition: 0.25s ease;
}

.botao-cabecalho:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(13, 85, 184, 0.30);
}


/* =========================
   MENU MOBILE
========================= */

.menu-mobile {
    display: none;

    width: 44px;
    height: 44px;

    border: none;

    background: transparent;

    cursor: pointer;
}

.menu-mobile span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    border-radius: 10px;

    background: var(--azul-escuro);

    transition: 0.3s ease;
}


/* =====================================================
   HERO CAPA - GM
===================================================== */

.hero-capa {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 100px;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.92) 30%,
            rgba(255, 255, 255, 0.45) 48%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("assets/gabriel-hero.png");

    background-size: auto 90%;

    background-position: center bottom;

    background-repeat: no-repeat;
}


/* conteúdo */

.hero-capa .hero-conteudo {
    position: relative;

    z-index: 2;

    display: block;
}


/* texto */

.hero-capa .hero-texto {
    max-width: 590px;
}


.hero-capa h1 {
    color: var(--azul-escuro);

    font-size: clamp(46px, 5vw, 72px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -0.045em;
}


.hero-capa h1 strong {
    display: block;

    margin-top: 8px;

    color: var(--azul);
}


.hero-capa .hero-texto > p {
    max-width: 550px;

    margin-top: 24px;

    color: var(--texto-claro);

    font-size: 17px;

    line-height: 1.8;
}


/* etiqueta */

.hero-capa .etiqueta {
    display: inline-flex;

    margin-bottom: 20px;

    padding: 8px 14px;

    border-radius: 999px;

    border:
        1px solid
        rgba(13, 85, 184, 0.14);

    background:
        rgba(255, 255, 255, 0.75);

    color: var(--azul);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    backdrop-filter: blur(8px);
}


/* botões */

.hero-capa .hero-botoes {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


.hero-capa .hero-botoes .botao {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}


.hero-capa .botao-principal {
    background:
        linear-gradient(
            135deg,
            var(--azul),
            var(--azul-claro)
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(13, 85, 184, 0.25);
}


.hero-capa .botao-principal:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 36px
        rgba(13, 85, 184, 0.34);
}


.hero-capa .botao-secundario {
    border:
        1px solid
        rgba(7, 45, 99, 0.14);

    background:
        rgba(255, 255, 255, 0.88);

    color: var(--azul-escuro);

    backdrop-filter: blur(8px);
}


.hero-capa .botao-secundario:hover {
    transform: translateY(-3px);

    background: #ffffff;
}


/* benefícios */

.hero-capa .hero-beneficios {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 22px;

    margin-top: 30px;
}


.hero-capa .hero-beneficios span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #42516a;

    font-size: 13px;
    font-weight: 600;
}


.hero-capa .hero-beneficios i {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(13, 85, 184, 0.10);

    color: var(--azul);

    font-size: 10px;
}


/* TABLET */

@media (max-width: 900px) {

    .hero-capa {
        min-height: 720px;

        background-position: 58% center;
    }

}


/* CELULAR */

/* =====================================================
   HERO - CELULAR
===================================================== */
@media (max-width: 580px) {

    .hero-capa {
        min-height: auto;

        padding: 110px 0 45px;

        background:
            linear-gradient(
                180deg,
                #ffffff,
                #f4f8ff
            );
    }

    .hero-capa .hero-conteudo {
        display: block;
    }

    .hero-capa .hero-texto {
        width: 100%;
        max-width: 100%;
    }

    .hero-capa .etiqueta {
        margin-bottom: 16px;

        font-size: 10px;
    }

    .hero-capa h1 {
        max-width: 340px;

        font-size: 42px;

        line-height: 1.03;
    }

    .hero-capa .hero-texto > p {
        max-width: 350px;

        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }

    .hero-capa .hero-botoes {
        flex-direction: column;

        gap: 10px;

        margin-top: 25px;
    }

    .hero-capa .hero-botoes .botao {
        width: 100%;

        min-height: 54px;
    }

    .hero-capa .hero-beneficios {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;

        margin-top: 24px;
    }

    .hero-capa .hero-beneficios span {
        font-size: 11px;

        line-height: 1.35;
    }

    .hero-capa .hero-beneficios span:last-child {
        grid-column: 1 / -1;
    }

}
.hero-foto-mobile {
    display: none;
}

@media (max-width: 580px) {

    .hero-foto-mobile {
        display: block;

        width: 100%;

        overflow: hidden;

        background: #ffffff;
    }

    .hero-foto-mobile img {
        width: 100%;
        height: auto;

        display: block;

        object-fit: cover;
    }

}
/* =========================
   BENEFÍCIOS
========================= */

.beneficios {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--azul-escuro),
            #0b4e9e
        );

    color: var(--branco);
}

.beneficios::before {
    content: "";

    position: absolute;
    right: -120px;
    top: -160px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}

.beneficios-conteudo {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.beneficios .etiqueta {
    border-color: rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.07);

    color: #b8d8ff;
}

.beneficios h2 {
    max-width: 520px;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.beneficios h2 strong {
    color: #89bdff;
}

.lista-beneficios {
    display: grid;

    gap: 14px;
}

.lista-beneficios div {
    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 66px;

    padding: 17px 20px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
}

.lista-beneficios i {
    color: #9ac7ff;

    font-size: 21px;
}

.lista-beneficios span {
    font-size: 15px;
    font-weight: 600;
}


/* =========================
   RESULTADOS
========================= */

.resultados {
    background: #f6f9fd;
}

.grade-resultados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.resultado-placeholder {
    aspect-ratio: 4 / 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 22px;

    border: 1px dashed rgba(13, 85, 184, 0.30);

    background:
        linear-gradient(
            145deg,
            #eaf3ff,
            #ffffff
        );

    color: var(--azul);
}

.resultado-placeholder i {
    font-size: 42px;

    opacity: 0.35;
}

.resultado-placeholder span {
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   SOBRE
========================= */

.sobre {
    background: var(--branco);
}

.sobre-conteudo {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.sobre-imagem .imagem-placeholder {
    min-height: 520px;
}

.sobre-texto h2 {
    margin-top: 8px;

    color: var(--azul-escuro);

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.sobre-texto h2 strong {
    color: var(--azul);
}

.sobre-texto p {
    margin-top: 22px;

    color: var(--texto-claro);

    font-size: 16px;

    line-height: 1.8;
}
.sobre-imagem {
    width: 100%;
    min-height: 520px;

    border-radius: 28px;
    overflow: hidden;

    box-shadow: var(--sombra);
}

.foto-gabriel {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}

.sobre-imagem:hover .foto-gabriel {
    transform: scale(1.03);
}


/* CELULAR */

@media (max-width: 580px) {

    .sobre-imagem {
        min-height: 400px;

        border-radius: 22px;
    }

    .foto-gabriel {
        height: 400px;
    }

}


/* =========================
   PROCESSO
========================= */

.processo {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #edf4ff
        );
}

.grade-processo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.passo {
    min-height: 260px;

    padding: 28px;

    border-radius: 22px;

    border: 1px solid var(--borda);

    background: rgba(255, 255, 255, 0.78);

    transition: 0.3s ease;
}

.passo:hover {
    transform: translateY(-6px);

    box-shadow: var(--sombra);
}

.passo > span {
    display: inline-flex;

    margin-bottom: 25px;

    color: rgba(13, 85, 184, 0.20);

    font-size: 42px;
    font-weight: 800;

    line-height: 1;
}

.passo h3 {
    color: var(--azul-escuro);

    font-size: 18px;
    font-weight: 800;
}

.passo p {
    margin-top: 12px;

    color: var(--texto-claro);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #0a3d80,
            #1167d6
        );

    color: var(--branco);
}

.cta-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta span {
    color: #c6ddff;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.cta h2 {
    max-width: 650px;

    margin-top: 8px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.botao-whatsapp {
    flex-shrink: 0;

    background: #ffffff;

    color: var(--azul-escuro);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.18);
}

.botao-whatsapp i {
    color: #25d366;

    font-size: 20px;
}

.botao-whatsapp:hover {
    transform: translateY(-3px);
}


/* =========================
   RODAPÉ
========================= */

.rodape {
    padding: 34px 0;

    background: #061f42;

    color: rgba(255, 255, 255, 0.78);
}

.rodape-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.rodape-conteudo > div {
    display: flex;
    flex-direction: column;
}

.rodape strong {
    color: var(--branco);

    font-size: 20px;
    font-weight: 800;
}

.rodape span {
    margin-top: 2px;

    font-size: 11px;
}

.rodape p {
    font-size: 12px;
}


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-flutuante {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 28px;

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.34);

    animation: pulsarWhatsapp 2s infinite;

    transition: 0.25s ease;
}

.whatsapp-flutuante:hover {
    transform: scale(1.08);
}

@keyframes pulsarWhatsapp {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.38),
            0 12px 35px rgba(37, 211, 102, 0.34);
    }

    70% {
        box-shadow:
            0 0 0 16px rgba(37, 211, 102, 0),
            0 12px 35px rgba(37, 211, 102, 0.34);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 12px 35px rgba(37, 211, 102, 0.34);
    }

}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1050px) {

    .menu {
        gap: 18px;
    }

    .botao-cabecalho {
        display: none;
    }

    .hero-conteudo,
    .sobre-conteudo,
    .beneficios-conteudo {
        gap: 45px;
    }

    .grade-servicos,
    .grade-processo {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 820px) {

    .cabecalho-conteudo {
        min-height: 74px;
    }

    .menu-mobile {
        display: block;
    }

    .menu {
        position: fixed;

        top: 74px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px 6% 25px;

        background: rgba(255, 255, 255, 0.98);

        border-bottom: 1px solid var(--borda);

        box-shadow:
            0 20px 40px rgba(19, 45, 82, 0.10);

        transform: translateY(-140%);

        opacity: 0;
        visibility: hidden;

        transition: 0.35s ease;
    }

    .menu.ativo {
        transform: translateY(0);

        opacity: 1;
        visibility: visible;
    }

    .menu a {
        padding: 16px 4px;

        border-bottom: 1px solid rgba(7, 45, 99, 0.07);
    }

    .menu a::after {
        display: none;
    }

    .menu-mobile.ativo span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-mobile.ativo span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.ativo span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    .hero {
        min-height: auto;

        padding-top: 125px;
        padding-bottom: 70px;
    }

    .hero-conteudo {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-texto {
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(42px, 11vw, 62px);
    }

    .hero-imagem {
        min-height: auto;
    }

    .imagem-placeholder {
        min-height: 430px;
    }


    .secao {
        padding: 85px 0;
    }


    .beneficios-conteudo,
    .sobre-conteudo {
        grid-template-columns: 1fr;
    }

    .grade-resultados {
        grid-template-columns: 1fr 1fr;
    }


    .cta-conteudo {
        flex-direction: column;
        align-items: flex-start;
    }


    .rodape-conteudo {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 580px) {

    .container {
        width: min(90%, var(--container));
    }


    .logo-placeholder {
        width: 46px;
        height: 46px;

        border-radius: 12px;
    }

    .logo-texto span {
        max-width: 145px;
    }


    .hero {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: 42px;

        line-height: 1.04;
    }

    .hero-texto > p {
        font-size: 15px;
    }


    .hero-botoes {
        flex-direction: column;
    }

    .botao {
        width: 100%;
    }


    .hero-beneficios {
        flex-direction: column;

        gap: 11px;
    }


    .imagem-placeholder {
        min-height: 340px;

        border-radius: 24px;
    }

    .imagem-placeholder i {
        font-size: 70px;
    }


    .titulo-secao {
        margin-bottom: 38px;
    }

    .titulo-secao h2,
    .sobre-texto h2,
    .beneficios h2 {
        font-size: 35px;
    }


    .grade-servicos,
    .grade-processo,
    .grade-resultados {
        grid-template-columns: 1fr;
    }


    .card-servico,
    .passo {
        min-height: auto;
    }


    .sobre-imagem .imagem-placeholder {
        min-height: 380px;
    }


    .cta {
        padding: 65px 0;
    }

    .cta h2 {
        font-size: 34px;
    }


    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;

        font-size: 25px;
    }

}
@media (min-width: 821px) {

    .resultados {
        padding-bottom: 150px;
    }

    .sobre {
        padding-top: 150px;
    }

}
/* =====================================================
   ESPAÇAMENTO GERAL ENTRE SEÇÕES - DESKTOP
===================================================== */

@media (min-width: 821px) {

    .secao {
        padding-top: 130px;
        padding-bottom: 130px;
    }

    .servicos {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .beneficios {
        padding-top: 135px;
        padding-bottom: 135px;
    }

    .resultados {
        padding-top: 140px;
        padding-bottom: 165px;
    }

    .sobre {
        padding-top: 165px;
        padding-bottom: 150px;
    }

    .processo {
        padding-top: 145px;
        padding-bottom: 145px;
    }

    .cta {
        padding-top: 95px;
        padding-bottom: 95px;
    }

}
.botao-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 56px;
    padding: 0 28px;

    border-radius: 999px;

    background: #25d366;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 28px
        rgba(37, 211, 102, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.botao-whatsapp i {
    font-size: 21px;
}

.botao-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(37, 211, 102, 0.35);
}
/* =====================================================
   BOTÃO WHATSAPP - CTA
===================================================== */

.cta .botao-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 58px;
    padding: 0 28px;

    border: 2px solid #ffffff;
    border-radius: 999px;

    background: #ffffff;

    color: var(--azul-escuro);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


/* ÍCONE */

.cta .botao-whatsapp i {
    color: #25d366;

    font-size: 22px;
}


/* HOVER */

.cta .botao-whatsapp:hover {
    transform: translateY(-3px);

    background: #25d366;

    border-color: #25d366;

    color: #ffffff;

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.18);
}


.cta .botao-whatsapp:hover i {
    color: #ffffff;
}


/* CELULAR */

@media (max-width: 580px) {

    .cta .botao-whatsapp {
        width: 100%;

        min-height: 56px;

        margin-top: 10px;
    }

}
.resultado-item {
    width: 100%;
    height: auto;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resultado-item img {
    width: 100%;
    height: auto;

    object-fit: contain;
    display: block;

}
.resultado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: var(--container);
}

@media (min-width: 769px) {

    .grade-resultados {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: start;
    }

    .resultado-item {
        width: 100%;
        height: auto !important;
        overflow: visible !important;
    }

    .resultado-item img {
        width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block;
    }

}