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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1d1d1d;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.contenedor {
    width: 88%;
    max-width: 1180px;
    margin: auto;
}

.header-principal {
    background: #252525;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid #f28c00;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.barra-superior {
    height: 90px;
    width: 94%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu-icono {
    justify-self: start;
    background: transparent;
    color: #f28c00;
    border: none;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.logo-centro {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 8px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.logo-centro img {
    width: 215px;
    height: auto;
}

.btn-cotizar-top {
    justify-self: end;
    background: #f28c00;
    color: #ffffff;
    padding: 13px 26px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border-radius: 4px;
    box-shadow: 0 5px 14px rgba(242, 140, 0, 0.35);
}

.btn-cotizar-top:hover {
    background: #d97900;
}

.menu-principal {
    background: #ffffff;
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 12px 10px;
    border-bottom: 1px solid #eeeeee;
}

.menu-principal a {
    color: #111111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-principal a:hover {
    color: #f28c00;
}

.hero-referencia {
    min-height: 500px;
    background:
        linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(242, 140, 0, 0.28)),
        url("img/banner-fym-montacargas.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 70px 20px;
}

.hero-contenido {
    width: 88%;
    max-width: 920px;
    text-align: center;
}

.hero-subtitulo {
    color: #f28c00;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-referencia h1 {
    font-size: 46px;
    line-height: 1.16;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.hero-descripcion {
    font-size: 17px;
    margin-bottom: 26px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
}

.hero-botones {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero,
.btn-hero-secundario {
    display: inline-block;
    padding: 13px 34px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border-radius: 4px;
}

.btn-hero {
    background: #f28c00;
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(242, 140, 0, 0.32);
}

.btn-hero:hover {
    background: #d97900;
}

.btn-hero-secundario {
    background: #ffffff;
    color: #1d1d1d;
}

.btn-hero-secundario:hover {
    background: #eeeeee;
}

.beneficios-rapidos {
    background: #ffffff;
    padding: 24px 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.beneficios-grid article {
    border-left: 5px solid #f28c00;
    padding: 10px 18px;
    background: #f7f7f7;
}

.beneficios-grid span {
    display: block;
    color: #f28c00;
    font-size: 23px;
    font-weight: 900;
}

.beneficios-grid p {
    color: #444444;
    font-size: 14px;
    font-weight: 700;
}

.franja-contacto {
    width: 88%;
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e7e7e7;
}

.dato-contacto {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    border-right: 1px solid #cccccc;
}

.dato-contacto:last-child {
    border-right: none;
}

.dato-contacto span {
    color: #f28c00;
    font-size: 24px;
}

.dato-contacto p {
    font-size: 13px;
    color: #555555;
}

.seccion {
    padding: 78px 0;
}

.fondo-gris {
    background: #f7f7f7;
}

.dos-columnas,
.cotizacion-layout,
.contacto-layout,
.seguridad-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mini-titulo,
.titulo-seccion span {
    color: #f28c00;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.dos-columnas h2,
.titulo-seccion h2,
.seguridad h2,
.cotizacion h2,
.contacto-final h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 12px 0 18px;
    color: #111111;
    font-weight: 900;
}

.dos-columnas p,
.titulo-seccion p,
.cotizacion p,
.contacto-final p,
.seguridad p {
    color: #555555;
    font-size: 16px;
}

.frase-destacada {
    margin-top: 16px;
    font-weight: 900;
    color: #252525 !important;
    border-left: 5px solid #f28c00;
    padding-left: 14px;
}

.btn-secundario {
    display: inline-block;
    margin-top: 22px;
    background: #f28c00;
    color: #ffffff;
    padding: 13px 28px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
}

.btn-secundario:hover {
    background: #d97900;
}

.imagen-servicio img,
.imagen-apoyo img,
.seguridad-imagen img,
.cotizacion-info img,
.contacto-imagen img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.titulo-seccion {
    text-align: center;
    margin-bottom: 44px;
}

.servicios-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
    align-items: stretch;
}

.servicios-layout .imagen-apoyo img {
    height: 100%;
    min-height: 420px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #ffffff;
    padding: 26px 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    border-bottom: 5px solid #f28c00;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.equipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #111111;
    font-weight: 900;
}

.card p {
    color: #555555;
    font-size: 15px;
}

.equipos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.equipo-card {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.equipo-card img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.equipo-card h3 {
    font-size: 19px;
    padding: 16px 14px 6px;
    color: #111111;
    font-weight: 900;
}

.equipo-card p {
    padding: 0 18px 20px;
    color: #555555;
    font-size: 14px;
}

.nota-equipos {
    margin-top: 26px;
    text-align: center;
    font-weight: 900;
    color: #252525;
}

.seguridad {
    background: #202020;
    color: #ffffff;
}

.seguridad h2,
.seguridad p {
    color: #ffffff;
}

.seguridad-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
}

.seguridad-cards .card {
    background: #ffffff;
    color: #111111;
}

.seguridad-cards .card p {
    color: #555555;
}

.cotizacion {
    background: #f7f7f7;
}

.cotizacion-info img {
    margin-top: 24px;
    height: 260px;
}

.formulario {
    background: #ffffff;
    padding: 30px;
    display: grid;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
}

.formulario input,
.formulario select,
.formulario textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dddddd;
    font-size: 15px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 4px;
}

.formulario textarea {
    min-height: 105px;
    resize: vertical;
}

.formulario input:focus,
.formulario select:focus,
.formulario textarea:focus {
    border-color: #f28c00;
}

.formulario button {
    background: #f28c00;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
}

.formulario button:hover {
    background: #d97900;
}

.contacto-final {
    background: #ffffff;
}

.contacto-info p {
    margin-bottom: 10px;
}

.contacto-imagen img {
    height: 330px;
}

.whatsapp-flotante {
    position: fixed;
    left: 18px;
    bottom: 22px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 2000;
}

.whatsapp-flotante:hover {
    background: #1ebc59;
}

.footer {
    background: #111111;
    color: #ffffff;
    text-align: center;
    padding: 22px;
    font-size: 14px;
}

@media (max-width: 980px) {
    .beneficios-grid,
    .franja-contacto,
    .dos-columnas,
    .cotizacion-layout,
    .contacto-layout,
    .seguridad-layout,
    .servicios-layout,
    .cards,
    .equipos-grid {
        grid-template-columns: 1fr;
    }

    .barra-superior {
        height: auto;
        padding: 16px 0;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .menu-icono,
    .btn-cotizar-top {
        justify-self: center;
    }

    .logo-centro img {
        width: 180px;
    }

    .menu-principal {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-referencia {
        min-height: 440px;
        background:
            linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(242, 140, 0, 0.35)),
            url("img/banner-fym-montacargas.png");
        background-size: cover;
        background-position: center;
    }

    .hero-referencia h1 {
        font-size: 34px;
    }

    .hero-descripcion {
        font-size: 15px;
    }

    .dato-contacto {
        border-right: none;
        border-bottom: 1px solid #dddddd;
        padding: 16px 0;
    }

    .dato-contacto:last-child {
        border-bottom: none;
    }

    .dos-columnas h2,
    .titulo-seccion h2,
    .seguridad h2,
    .cotizacion h2,
    .contacto-final h2 {
        font-size: 28px;
    }

    .imagen-servicio img,
    .imagen-apoyo img,
    .seguridad-imagen img,
    .cotizacion-info img,
    .contacto-imagen img {
        height: 250px;
        min-height: auto;
    }
}


/* =====================================================
   AJUSTE ACTUAL - FRANJA CLARA, LOGO TRANSPARENTE GRANDE Y MENÚ OSCURO
===================================================== */

.header-principal {
    background: #f4efe7;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.barra-superior {
    height: 118px;
    width: 94%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0;
}

.menu-icono {
    justify-self: start;
    background: transparent;
    color: #f28c00;
    border: none;
    font-size: 34px;
    font-weight: bold;
    cursor: pointer;
}

.logo-centro {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    overflow: visible;
}

.logo-centro img {
    width: auto;
    height: 104px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.btn-cotizar-top {
    justify-self: end;
    background: #f28c00;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(242, 140, 0, 0.35);
}

.btn-cotizar-top:hover {
    background: #d97900;
}

.menu-principal {
    background: #242424;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    padding: 15px 10px;
    border-top: 4px solid #f28c00;
    border-bottom: 1px solid #111111;
    position: relative;
    z-index: 20;
}

.menu-principal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.menu-principal a:hover {
    color: #f28c00;
}



/* =====================================================
   ENLACES DE CONTACTO Y UBICACIÓN
===================================================== */

.dato-contacto a,
.contacto-info a,
.link-contacto {
    color: inherit;
    text-decoration: none;
    font-weight: 900;
}

.dato-contacto a:hover,
.contacto-info a:hover,
.link-contacto:hover {
    color: #f28c00;
}

/* =====================================================
   mejora4.css - Botón de llamada directa + mapa
   FyM Montacargas S.A.C.
===================================================== */

.dato-contacto a,
.contacto-info a {
    color: inherit;
    text-decoration: none;
    font-weight: 900;
}

.dato-contacto a:hover,
.contacto-info a:hover {
    color: #f28c00;
}

.contacto-con-mapa {
    background: #ffffff;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
}

.contacto-info {
    text-align: left;
}

.contacto-acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.btn-llamar,
.btn-mapa {
    display: inline-block;
    padding: 14px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-llamar {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.btn-llamar:hover {
    background: #1ebc59;
}

.btn-mapa {
    background: #242424;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.20);
}

.btn-mapa:hover {
    background: #111111;
}

.mapa-ubicacion {
    width: 100%;
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 4px solid #f4efe7;
}

.mapa-ubicacion iframe {
    display: block;
    width: 100%;
    min-height: 360px;
}

@media (max-width: 900px) {
    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contacto-info {
        text-align: center;
    }

    .contacto-acciones {
        justify-content: center;
    }

    .btn-llamar,
    .btn-mapa,
    .contacto-acciones .btn-hero {
        width: 100%;
        max-width: 290px;
        text-align: center;
    }

    .mapa-ubicacion,
    .mapa-ubicacion iframe {
        min-height: 300px;
    }
}



/* =====================================================
   AJUSTES FINALES PARA CELULAR
===================================================== */

@media (max-width: 900px) {
    .barra-superior {
        height: auto;
        padding: 18px 0;
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .menu-icono,
    .btn-cotizar-top {
        justify-self: center;
    }

    .menu-icono {
        font-size: 30px;
    }

    .logo-centro {
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        width: auto;
        height: auto;
    }

    .logo-centro img {
        height: 78px;
        width: auto;
        max-width: 260px;
        object-fit: contain;
    }

    .btn-cotizar-top {
        padding: 13px 26px;
        font-size: 14px;
    }

    .menu-principal {
        flex-wrap: wrap;
        gap: 14px 22px;
        padding: 13px 12px;
        background: #242424;
        border-top: 4px solid #f28c00;
    }

    .menu-principal a {
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
    }

    .menu-principal a:hover {
        color: #f28c00;
    }

    .hero-referencia {
        min-height: auto !important;
        padding: 58px 18px 70px !important;
        background:
            linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(242, 140, 0, 0.34)),
            url("img/banner-fym-montacargas.png") !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-contenido {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-subtitulo {
        font-size: 13px !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    .hero-referencia h1 {
        font-size: 27px !important;
        line-height: 1.18 !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 16px !important;
    }

    .hero-descripcion {
        font-size: 14px !important;
        line-height: 1.5 !important;
        max-width: 340px !important;
        margin-bottom: 22px !important;
    }

    .btn-hero {
        padding: 12px 24px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }

    .btn-hero-secundario,
    .hero-contenido a[href="#servicios"] {
        display: inline-block !important;
        margin-top: 10px !important;
        margin-left: 0 !important;
        padding: 11px 22px !important;
        font-size: 13px !important;
        background: #ffffff !important;
        color: #222222 !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        font-weight: 900 !important;
    }

    .whatsapp-flotante {
        display: none !important;
    }

    .contacto-layout {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .contacto-info {
        text-align: center !important;
    }

    .contacto-acciones {
        justify-content: center !important;
    }

    .btn-llamar,
    .btn-mapa,
    .contacto-acciones .btn-hero {
        width: 100% !important;
        max-width: 290px !important;
        text-align: center !important;
    }

    .mapa-ubicacion,
    .mapa-ubicacion iframe {
        min-height: 300px !important;
    }
}
