/* ==========================================================
   MAiSAN.CL
   ESTILOS GENERALES
   ========================================================== */

/* == INICIO - GENERAL == */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(0, 125, 205, 0.14),
            transparent 31%
        ),
        radial-gradient(
            circle at 15% 65%,
            rgba(0, 100, 185, 0.10),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #01060c 0%,
            #061421 48%,
            #020912 100%
        );
    background-attachment: fixed;
}

.sitio {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.cabecera,
.menu,
.cuerpo,
.pie {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.menu {
    z-index: 10000;
    overflow: visible;
}

.cuerpo {
    z-index: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

/* == FIN - GENERAL == */

/* == INICIO - CABECERA == */

.barra-remodelacion {
    width: 100%;
    background:
        linear-gradient(
            90deg,
            #03101a 0%,
            #09203a 50%,
            #03101a 100%
        );
    border-bottom: 1px solid #1d3d55;
}

.barra-remodelacion-contenido {
    min-height: 48px;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    text-align: center;
}

.barra-remodelacion strong {
    color: #ffd000;
}

.icono-herramienta {
    color: #ffd000;
    font-size: 17px;
}

.separador-cabecera {
    color: #ffd000;
}

.mensaje-remodelacion {
    color: #ffffff;
}

/* == FIN - CABECERA == */

/* == INICIO - MENU == */

.menu-maisan {
    position: relative;
    z-index: 10000;
    width: 100%;
    overflow: visible;
    background:
        radial-gradient(
            ellipse at 12% 45%,
            rgba(0, 123, 205, 0.13),
            transparent 27%
        ),
        linear-gradient(
            90deg,
            #020912 0%,
            #071625 50%,
            #020912 100%
        );
    border-bottom: 1px solid #12324a;
}

.menu-contenedor {
    position: relative;
    width: 100%;
    max-width: 1536px;
    min-height: 85px;
    margin: 0 auto;
    padding: 4px 4%;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* == FIN - MENU == */

/* == INICIO - MARCA == */

.marca-maisan {
    width: 27%;
    min-width: 300px;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    border-right: 1px solid #263746;
}

.logo-maisan {
    line-height: 0.85;
    white-space: nowrap;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -5px;
    font-style: italic;
}

.logo-mai {
    color: #ffffff;
}

.logo-san {
    color: #078be0;
}

.marca-logo-fila {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.marca-subtitulo {
    width: 100%;
    margin-top: 3px;
    color: #ffc900;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
    white-space: nowrap;
}

.marca-eslogan {
    display: inline-block;
    transform: rotate(-0.8deg);
}

.marca-bandera {
    position: relative;
    width: 34px;
    height: 23px;
    flex: 0 0 34px;
    overflow: hidden;
    clip-path: polygon(0 5%, 100% 22%, 87% 50%, 100% 78%, 0 95%);
    background: linear-gradient(to bottom, #ffffff 0 50%, #d71920 50% 100%);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}

.marca-bandera::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0039a6;
    color: #ffffff;
    font-size: 8px;
    line-height: 1;
}

.marca-linea {
    width: 85%;
    height: 2px;
    margin: 4px auto 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            #078be0,
            #00b7ff,
            transparent
        );
}

/* == FIN - MARCA == */

/* == INICIO - NAVEGACION == */

.navegacion-maisan {
    position: relative;
    width: 73%;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    overflow: visible;
}

.menu-enlace {
    min-height: 68px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-right: 1px solid #263746;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.menu-enlace:hover {
    color: #ffc900;
    background:
        linear-gradient(
            180deg,
            rgba(0, 150, 230, 0.06),
            transparent
        );
}

.menu-enlace.activo {
    color: #ffc900;
}

.menu-icono,
.contacto-icono {
    margin-right: 9px;
    color: #ffc900;
    font-size: 26px;
}

/* == FIN - NAVEGACION == */

/* == INICIO - PRODUCTOS MENU == */

.menu-productos {
    position: relative;
    z-index: 10001;
    min-width: 230px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: visible;
}

.producto-principal {
    width: 100%;
}

.flecha-productos {
    margin-left: 8px;
    color: #ffc900;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.menu-productos.abierto .flecha-productos {
    transform: rotate(180deg);
}

.submenu-productos {
    position: absolute;
    z-index: 99999;
    top: 100%;
    left: 50%;
    width: 230px;
    transform: translateX(-50%);
    display: none;
    background:
        linear-gradient(
            180deg,
            #092033,
            #03101b
        );
    border: 1px solid #17405e;
    border-top: 4px solid #ffc900;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.75);
}

.menu-productos.abierto .submenu-productos {
    display: block;
}

.submenu-productos a {
    display: block;
    padding: 14px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #193247;
}

.submenu-productos a:hover {
    color: #ffc900;
    background: #0c2131;
}

/* == FIN - PRODUCTOS MENU == */

/* == INICIO - HAMBURGUESA == */

.boton-hamburguesa {
    display: none;
    width: 48px;
    height: 44px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(4, 17, 29, 0.9);
    border: 1px solid #23465e;
    border-radius: 6px;
    cursor: pointer;
}

.boton-hamburguesa span {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #ffc900;
}

/* == FIN - HAMBURGUESA == */

/* == INICIO - CUERPO GENERAL == */

.cuerpo-maisan {
    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            ellipse at 78% 24%,
            rgba(6, 97, 150, 0.15),
            transparent 34%
        ),
        radial-gradient(
            ellipse at 68% 63%,
            rgba(214, 126, 18, 0.06),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #01070d 0%,
            #061522 50%,
            #020912 100%
        );
}

/* == INICIO - NUBE / HUMO AZUL IZQUIERDO == */

.cuerpo-maisan::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 30px;
    left: -170px;
    width: 520px;
    height: 610px;
    pointer-events: none;
    opacity: 0.58;
    filter: blur(30px);
    background:

        radial-gradient(
            ellipse at 45% 18%,
            rgba(0, 112, 180, 0.28),
            transparent 42%
        ),

        radial-gradient(
            ellipse at 60% 36%,
            rgba(0, 80, 150, 0.27),
            transparent 44%
        ),

        radial-gradient(
            ellipse at 35% 55%,
            rgba(0, 130, 200, 0.18),
            transparent 40%
        ),

        radial-gradient(
            ellipse at 62% 73%,
            rgba(1, 65, 125, 0.25),
            transparent 42%
        );
}

/* == INICIO - SEGUNDA NEBLINA AZUL SUAVE == */

.cuerpo-maisan::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -170px;
    bottom: 80px;
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0.30;
    filter: blur(42px);
    background:

        radial-gradient(
            circle at 40% 45%,
            rgba(0, 132, 205, 0.24),
            transparent 40%
        ),

        radial-gradient(
            circle at 70% 65%,
            rgba(0, 70, 135, 0.22),
            transparent 46%
        );
}

/* == FIN - CUERPO GENERAL == */

/* == INICIO - HERO == */

.hero-maisan {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #17384e;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1536px;
    min-height: 460px;
    margin: 0 auto;
    padding: 40px 5% 35px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 25px;
}

/* == FIN - HERO == */

/* == INICIO - HERO TEXTO == */

.hero-texto {
    position: relative;
    z-index: 2;
}

.etiqueta-principal {
    display: inline-block;
    padding: 9px 26px;
    margin-bottom: 15px;
    background:
        linear-gradient(
            90deg,
            #0475bb,
            #0ba8f3
        );
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    transform: skew(-7deg);
    box-shadow:
        0 0 24px rgba(0, 153, 230, 0.18);
}

.hero-texto h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-texto h1 span {
    display: block;
    color: #ffc900;
}

.hero-texto h2 {
    margin-top: 18px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

/* == FIN - HERO TEXTO == */

/* == INICIO - CARACTERISTICAS == */

.caracteristicas {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.caracteristica {
    min-height: 105px;
    padding: 0 10px;
    text-align: center;
    border-right: 1px solid #274257;
}

.caracteristica:last-child {
    border-right: 0;
}

.caracteristica-icono {
    width: 55px;
    height: 55px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 27px;
}

.caracteristica-icono.azul {
    color: #00a8ff;
}

.caracteristica-icono.amarillo {
    color: #ffc900;
}

.caracteristica-texto {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

/* == FIN - CARACTERISTICAS == */

/* == INICIO - IMAGENES == */

.hero-imagen-columna {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marco-imagen {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #07111b;
    border: 2px solid #168bc6;
    border-radius: 12px;
    box-shadow:
        0 8px 35px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(0, 140, 215, 0.10);
}

.marco-fogon {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 10;
}

.marco-producto {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.marco-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* == FIN - IMAGENES == */

/* == INICIO - SELLO PRECIO == */

.precio-fogon-imagen {
    position: absolute;
    left: 18px;
    bottom: 18px;
    min-width: 170px;
    padding: 9px 15px;
    border: 2px solid #00a8ff;
    border-radius: 9px;
    background: rgba(0, 8, 18, 0.88);
    text-align: center;
}

.precio-fogon-imagen span {
    display: block;
    color: #00a8ff;
    font-size: 13px;
    font-weight: 800;
}

.precio-fogon-imagen strong {
    display: block;
    color: #ffffff;
    font-size: 39px;
    font-weight: 900;
}

/* == FIN - SELLO PRECIO == */

/* == INICIO - SELLO ACEITE == */

.sello-aceite {
    position: absolute;
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 145px;
    padding: 14px;
    border: 1px solid #168bc6;
    border-radius: 10px;
    background: rgba(1, 10, 17, 0.92);
    text-align: center;
}

.sello-aceite span,
.sello-aceite strong {
    display: block;
}

.sello-aceite span {
    font-size: 12px;
}

.sello-aceite strong {
    margin: 4px 0;
    color: #ffc900;
    font-size: 15px;
}

.simbolo-reciclaje {
    margin-top: 7px;
    color: #ffc900;
    font-size: 34px;
}

/* == INICIO - SELLO ACEITE - VERSION MOVIL == */

@media (max-width: 760px) {
    .sello-aceite {
        left: auto;
        right: 14px;
        bottom: 7px;
        width: auto;
        min-width: 92px;
        padding: 5px 7px;
    }

    .sello-aceite span {
        font-size: 7px;
    }

    .sello-aceite strong {
        margin: 2px 0;
        font-size: 9px;
    }

    .simbolo-reciclaje {
        display: none;
    }
}

/* == FIN - SELLO ACEITE - VERSION MOVIL == */

/* == FIN - SELLO ACEITE == */

/* == INICIO - PRODUCTOS == */

.productos-maisan {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 14px 3% 28px;
    background:
        linear-gradient(
            180deg,
            rgba(4, 22, 35, 0.78),
            rgba(1, 8, 15, 0.92)
        );
}

.titulo-seccion {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.titulo-seccion span {
    width: 130px;
    height: 2px;
    background: #078be0;
}

.titulo-seccion h2 {
    font-size: 20px;
    text-align: center;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

.enlace-tarjeta {
    color: inherit;
    text-decoration: none;
}

.tarjeta-producto {
    height: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 54% 46%;
    overflow: hidden;
    border: 1px solid #536779;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(9, 25, 38, 0.96),
            rgba(4, 16, 26, 0.96)
        );
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.30);
}

.tarjeta-producto:hover {
    border-color: #168bc6;
}

.tarjeta-producto .marco-producto {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border: 0;
    border-right: 1px solid #234157;
    border-radius: 0;
}

.tarjeta-contenido {
    min-width: 0;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.tarjeta-contenido h3 {
    width: 100%;
    min-height: 46px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 22px;
    line-height: 1.05;
    text-align: center;
}

.boton-ver-mas {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 5px;
    background:
        linear-gradient(
            90deg,
            #064c96,
            #0874c8
        );
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

/* == FIN - PRODUCTOS == */

/* == INICIO - TRABAJO A MEDIDA == */

.tarjeta-servicio {
    margin-top: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid #078be0;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(0, 140, 220, 0.12),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #06111c,
            #020810
        );
    color: inherit;
    text-decoration: none;
}

.tarjeta-servicio:link,
.tarjeta-servicio:visited,
.tarjeta-servicio:hover,
.tarjeta-servicio:active {
    color: inherit;
    text-decoration: none;
}

.icono-servicio {
    color: #078be0;
    font-size: 38px;
}

.tarjeta-servicio h3 {
    color: #078be0;
    font-size: 20px;
    white-space: nowrap;
    text-decoration: none;
}

.tarjeta-servicio p {
    margin-top: 4px;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none;
}

/* == FIN - TRABAJO A MEDIDA == */

/* == INICIO - PIE == */

.pie-maisan {
    width: 100%;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 137, 210, 0.10),
            transparent 35%
        ),
        linear-gradient(
            90deg,
            #020912 0%,
            #071523 50%,
            #020912 100%
        );
    border-top: 1px solid #17384e;
}

.pie-movil {
    display: none;
}

.pie-contenedor {
    width: 100%;
    max-width: 1536px;
    min-height: 120px;
    margin: 0 auto;
    padding: 20px 5%;
    display: grid;
    grid-template-columns:
        1.2fr
        1fr
        1fr
        1fr;
    align-items: center;
}

.pie-bloque {
    min-height: 70px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid #263746;
}

.pie-bloque:last-child {
    border-right: 0;
}

.pie-icono {
    color: #ffc900;
    font-size: 32px;
}

.pie-texto {
    display: flex;
    flex-direction: column;
}

.pie-texto span {
    margin-bottom: 4px;
    color: #00a8ff;
    font-size: 11px;
    font-weight: 800;
}

.pie-texto strong,
.pie-texto a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.pie-redes .pie-texto {
    align-items: center;
}

.redes-enlaces {
    display: flex;
    gap: 8px;
}

.redes-enlaces a,
.movil-redes-iconos a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #168bc6;
    border-radius: 50%;
    background: #06111d;
    color: #ffffff;
    text-decoration: none;
}

.redes-enlaces a {
    width: 34px;
    height: 34px;
}

.redes-enlaces img,
.movil-redes-iconos img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.pie-inferior {
    min-height: 38px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #172b3c;
    background: #01060b;
    color: #7f94a5;
    font-size: 11px;
}

.pie-separador {
    color: #ffc900;
}

/* == FIN - PIE == */

/* == INICIO - TABLET == */

@media (max-width: 1100px) and (min-width: 761px) {
    .menu-contenedor,
    .hero-contenido {
        padding-left: 3%;
        padding-right: 3%;
    }

    .logo-maisan {
        font-size: 52px;
    }

    .menu-enlace {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
    }

    .hero-contenido {
        grid-template-columns: 1fr 1fr;
    }

    .hero-texto h1 {
        font-size: 52px;
    }

    .hero-texto h2 {
        font-size: 19px;
    }

    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* == FIN - TABLET == */

/* == INICIO - MOVIL == */

@media (max-width: 760px) {
    /* CABECERA */

    .barra-remodelacion-contenido {
        min-height: 40px;
        padding: 6px 8px;
        gap: 5px;
        font-size: 10px;
    }

    /* MENU */

    .menu-contenedor {
        min-height: 70px;
        padding: 8px 15px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .marca-maisan {
        width: auto;
        min-width: 0;
        padding: 0;
        border: 0;
    }

    .logo-maisan {
        font-size: 42px;
    }

    .marca-logo-fila {
        justify-content: flex-start;
        gap: 6px;
    }

    .marca-subtitulo {
        margin-top: 4px;
        font-size: 8px;
        text-align: left;
        white-space: nowrap;
    }

    .marca-bandera {
        width: 27px;
        height: 18px;
        flex-basis: 27px;
    }

    .marca-bandera::before {
        width: 11px;
        height: 9px;
        font-size: 6px;
    }

    .marca-eslogan {
        transform: rotate(-0.5deg);
    }

    .marca-linea {
        width: 100%;
        margin-top: 5px;
    }

    .boton-hamburguesa {
        display: flex;
    }

    .boton-hamburguesa.abierto span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .boton-hamburguesa.abierto span:nth-child(2) {
        opacity: 0;
    }

    .boton-hamburguesa.abierto span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }

    .navegacion-maisan {
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 10px;
        border-top: 1px solid #193247;
        background: #030b14;
    }

    .navegacion-maisan.abierto {
        display: flex;
    }

    .menu-enlace {
        width: 100%;
        min-height: 52px;
        padding: 12px 15px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #172b3c;
        font-size: 15px;
    }

    .menu-productos {
        width: 100%;
        min-width: 0;
        display: block;
    }

    .producto-principal {
        justify-content: space-between;
    }

    .submenu-productos {
        position: static;
        width: 100%;
        transform: none;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .submenu-productos a {
        padding: 13px 20px 13px 45px;
    }

    /* FONDO HUMO MOVIL */

    .cuerpo-maisan::before {
        left: -215px;
        top: 20px;
        width: 430px;
        height: 520px;
        opacity: 0.42;
        filter: blur(34px);
    }

    .cuerpo-maisan::after {
        right: -240px;
        bottom: 100px;
        width: 400px;
        height: 430px;
        opacity: 0.22;
    }

    /* CUERPO */

    .hero-contenido {
        min-height: auto;
        padding: 14px 10px 12px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-texto {
        display: contents;
    }

    .etiqueta-principal {
        order: 1;
        align-self: center;
        margin-bottom: 6px;
        padding: 4px 12px;
        font-size: 10px;
    }

    .hero-texto h1 {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 20px;
        line-height: 1;
        letter-spacing: -0.6px;
        white-space: nowrap;
    }

    .hero-texto h1 span {
        display: inline;
        margin-left: 4px;
    }

    .hero-texto h2 {
        order: 3;
        width: 100%;
        margin: 6px 0 9px;
        text-align: center;
        font-size: 11px;
    }

    .hero-imagen-columna {
        order: 4;
        width: 100%;
    }

    .marco-fogon {
        max-width: none;
        aspect-ratio: 16 / 9;
    }

    .precio-fogon-imagen {
        left: 7px;
        bottom: 7px;
        min-width: 88px;
        padding: 5px 7px;
        border-width: 1px;
    }

    .precio-fogon-imagen span {
        font-size: 7px;
    }

    .precio-fogon-imagen strong {
        font-size: 20px;
    }

    .sello-aceite {
        right: 7px;
        bottom: 7px;
        width: auto;
        min-width: 92px;
        padding: 5px 7px;
    }

    .sello-aceite span {
        font-size: 7px;
    }

    .sello-aceite strong {
        margin: 2px 0;
        font-size: 9px;
    }

    .simbolo-reciclaje {
        display: none;
    }

    .caracteristicas {
        order: 5;
        margin-top: 8px;
        grid-template-columns: repeat(4, 1fr);
    }

    .caracteristica {
        min-height: 0;
        padding: 0 2px 3px;
    }

    .caracteristica-icono {
        width: 27px;
        height: 27px;
        margin-bottom: 4px;
        border-width: 1px;
        font-size: 13px;
    }

    .caracteristica-texto {
        font-size: 9px;
    }

     /* PRODUCTOS */

    .productos-maisan {
        padding: 8px 7px 12px;
    }

    .titulo-seccion {
        margin-bottom: 7px;
        gap: 5px;
    }

    .titulo-seccion span {
        width: 18px;
    }

    .titulo-seccion h2 {
        font-size: 10px;
    }

    .productos-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 6px;
    }

    .tarjeta-producto {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .tarjeta-producto .marco-producto {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        border: 0;
        border-bottom: 1px solid #234157;
    }

    .tarjeta-contenido {
        min-height: 46px;
        padding: 4px 2px;
        justify-content: center;
    }

    .tarjeta-contenido h3 {
        width: 100%;
        min-height: 0;
        margin-bottom: 4px;
        display: block;
        overflow: hidden;
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
    }

    .boton-ver-mas {
        padding: 3px 7px;
        font-size: 7px;
    }

    .tarjeta-servicio {
        grid-column: 1 / -1;
        min-height: 48px;
        margin-top: 10px;
        padding: 7px 12px;
        flex-direction: row;
        gap: 8px;
    }

    .icono-servicio {
        font-size: 22px;
    }

    .servicio-textos {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .tarjeta-servicio h3 {
        font-size: 12px;
    }

    .tarjeta-servicio p {
        margin: 0;
        font-size: 9px;
    }

    /* PIE */

    .pie-escritorio {
        display: none;
    }

    .pie-movil {
        display: block;
    }

    .pie-movil-contacto {
        min-height: 44px;
        padding: 6px 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #172b3c;
    }

    .movil-item {
        padding: 0 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-right: 1px solid #263746;
        color: #ffffff;
        text-decoration: none;
        white-space: nowrap;
    }

    .movil-item:last-child {
        border-right: 0;
    }

    .movil-icono {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: #ffc900;
    }

    .movil-icono svg {
        width: 100%;
        height: 100%;
        fill: currentColor;
    }

    .movil-icono-whatsapp {
        color: #25d366;
    }

    .movil-dato {
        font-size: 12px;
        font-weight: 800;
    }

    .pie-movil-redes {
        min-height: 42px;
        padding: 5px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .movil-redes-texto {
        color: #00a8ff;
        font-size: 10px;
        font-weight: 800;
        white-space: nowrap;
    }

    .movil-redes-iconos {
        display: flex;
        gap: 6px;
    }

    .movil-redes-iconos a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .movil-redes-iconos img {
        width: 15px;
        height: 15px;
    }


    .pie-inferior {
        min-height: 30px;
        padding: 6px;
        gap: 5px;
        font-size: 8.5px;
    }
}

/* == FIN - MOVIL == */

/* == INICIO - TELEFONOS PEQUEÑOS == */

@media (max-width: 430px) {
    .logo-maisan {
        font-size: 37px;
    }

    .hero-texto h1 {
        font-size: 18px;
    }

    .movil-item {
        padding-left: 5px;
        padding-right: 5px;
        gap: 4px;
    }

    .movil-icono {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }

    .movil-dato {
        font-size: 11px;
    }

    .movil-redes-texto {
        font-size: 9px;
    }

    .pie-inferior {
        font-size: 8px;
    }
}

/* == FIN - TELEFONOS PEQUEÑOS == */

/* == INICIO - TELEFONOS MUY PEQUEÑOS == */

@media (max-width: 370px) {
    .movil-dato {
        font-size: 10px;
    }

    .movil-redes-texto {
        font-size: 8.5px;
    }

    .pie-inferior {
        font-size: 7.5px;
    }
}

/* == FIN - TELEFONOS MUY PEQUEÑOS == */
