/* ===============================
   SECCIÓN GENERAL
================================ */
.ventajas-smart-section {
    position: relative; /* IMPORTANTE */
    padding: 80px 24px;
    background-color: #F5F7FA;
}

/* IMAGEN FLOTANTE */
.floating-mascota {
    position: absolute;
    left: -75px; /* Cambiado de right a left */
    top: 50%;
    transform: translateY(-25%);
    z-index: 1;
    pointer-events: none; /* Para que no interfiera con clicks */
}

.floating-mascota-img {
    width: auto; /* Ancho automático */
    height: 800px; /* Alto fijo */
    display: block;
}

/* Cuando la pantalla es más pequeña, mover la imagen más a la izquierda */
@media (max-width: 1400px) {
    .floating-mascota {
        left: -100px;
    }
}

@media (max-width: 1200px) {
    .floating-mascota {
        left: -150px;
    }
}

@media (max-width: 992px) {
    .floating-mascota {
        display: none; /* Ocultar en móvil */
    }
}

/* ===============================
   TÍTULO
================================ */
.ventajas-smart-title {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    text-align: center;

    font-family: "Encode Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.12px;

    margin-bottom: 24px;
}

.highlight-turquoise {
    color: var(--Brand-Colors-Turquoise-00, #00AEC7);
    font-weight: 700;
}

/* ===============================
   SUBTÍTULO
================================ */
.ventajas-smart-subtitle {
    max-width: 730px;
    margin: 0 auto 64px auto;

    color: var(--Brand-Colors-Blue-00, #1B365D);
    text-align: center;

    font-family: "Lato";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.382px;
}

.ventajas-smart-subtitle > .desktop{
    display: block;
}

.ventajas-smart-subtitle > .mobile{
    display: none;
}

.highlight-bold {
    font-weight: 700;
}

/* ===============================
   GRID DE BENEFICIOS
================================ */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}

/* ===============================
   COLUMNAS
================================ */
.benefit-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* HEADER DE COLUMNA */
.benefit-header {
    width: 170px;
    min-height: 56px;

    color: var(--Brand-Colors-Blue-00, #1B365D);
    text-align: center;

    font-family: "Encode Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    display: flex;
    justify-content: center;
}

.benefit-header > .title{
    width: 130px;
}

/* ===============================
   TARJETAS (DÉBITO / CRÉDITO)
================================ */
.benefit-card {
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 126px;
}

.card-img {
    width: 130px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}


/* TEXTO VERTICAL */
.card-label {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);

    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-family: "Encode Sans";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;

}

/* ===============================
   COLUMNAS BLANCAS CON SOMBRA
================================ */
.benefit-values {
    width: 140px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
}

.benefit-value {
    width: 100%;
    height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 0 8px;
    font-family: "Lato";
    font-size: 16px;
    font-weight: 400;
    position: relative; /* para el separador */
    color: var(--Brand-Colors-Blue-00, #1B365D); /* Color base para todo */
}

/* Solo el 20% tendrá el estilo destacado */
.highlight-text-value {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 4px; /* Espacio entre "20%" y "de Descuento" */
}

/* Si quieres que "de" también tenga estilo normal */
.benefit-value br + .benefit-label {
    font-weight: 400;
}

.benefit-value::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 101.548px;
    height: 1px;
    background: #C1C1C1;
}


.benefit-value:last-child::after {
    display: none;
}

.benefit-label {
    display: block;
    margin-top: 2px;
}

/* ===============================
   ICONOS
================================ */
.benefit-check {
    color: #00AEC7;
    font-family: "Font Awesome 6 Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 11.25px;
}

.benefit-x {
    color: #C4C7CF;
    font-size: 28px;
    font-weight: 900;
}

.conditions-text{
    width: 100%;
    text-align: center;
    margin-top: 54px;
}


/* MOBILE */
@media screen and (max-width: 768px) {
    .ventajas-smart-title {

        /* Titles/Title H5/Regular */
        font-family: "Encode Sans";
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.56px;
    }

    .ventajas-smart-subtitle{

        /* Paragraphs/Small/Regular */
        font-family: Lato;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 128.571% */
    }

    .ventajas-smart-subtitle > .desktop{
        display: none;
    }

    .ventajas-smart-subtitle > .mobile{
        display: block;
    }

    .conditions-text{
        /* Paragraphs/Special/Regular */
        font-family: Lato;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .benefits-grid {
        gap: 10px;
    }

    .benefit-header{
        width: 70px;
        height: 24px;
        min-height: auto;
    }

    .benefit-header > .title{
        font-family: Lato;
        font-size: 10px !important;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .card-img {
        width: 55px;
    }

    .benefit-values {
        width: 70px;
        border-radius: 10px;
    }

    .benefit-value::after {
        width: 51px;
    }

    .benefit-check {
        font-size: 14px;
    }

    .benefit-x {
        font-size: 14px;
    }

    .benefit-value, .highlight-text-value {
        font-size: 10px;
    }
}


