body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 120px;
    /* ajusta según la altura del header */
}

.menu a.active {
    background-color: #ffa500;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Top bar */
.top-bar {
    background-color: #ffa500;
    color: white;
    font-size: 14px;
    padding: 3px 7px;
}

.top-bar .left {
    font-weight: 600;
    margin-left: -92px;
}

.top-bar .right {
    font-style: italic;
    margin-right: -86px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar */
.navbar {
    background-color: #19455e;
    padding: 6px 11px;
    font-family: 'Arial', sans-serif;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}



.icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
}

/* Slider principal */
.slider {
    position: relative;
    width: 100%;
}

.slider .slide {
    position: relative;
    height: 500px;
    /* altura fija para el banner */
    overflow: hidden;
}



.slider img {
    width: 100%;
    height: 500px;
    /* ajusta según tu diseño */
    object-fit: cover;
}

/* Banner text centrado */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.banner-text img {
    max-width: 150px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
    color: #0d1c81;
    margin: 0;
}

/* Slick dots */
.slick-dots {
    bottom: 15px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
}

/* Logos estáticos */
.logo-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 25px;
    padding: 60px 0;
    overflow-x: auto;
    max-width: 1200px;
    /* ancho máximo del contenedor */
    margin: 0 auto;
    /* centrado en la pantalla */
}

.single-img img {
    width: 90px;
    /* tamaño un poco más grande y proporcionado */
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.single-img img:hover {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 800px) {
    .single-img img {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .single-img img {
        width: 60px;
    }
}

/* FIN HOME LOGO*/

/* Sección Marcas */
.brand-area {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.container {
    width: 99%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 33px;
    font-weight: bold;
    color: #096295 !important;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

/* Logos */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-logo img {
    width: 120px;
    height: auto;

    transition: all 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        width: 80px;
    }
}

/* Footer */
.footer {
    background: #19455e;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #b67702;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 0 auto;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 128px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;

}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col .social-icons {
    display: flex;
    gap: 15px;
}

.footer-col .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    color: #003399;
    transition: transform 0.3s, background-color 0.3s;
}

.footer-col .social-icons a:hover {
    background-color: #b67702;
    color: #fff;
    transform: scale(1.2);
}

.circle-text {
    font-size: 12px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.libro-img {
    margin-top: 10px;
    width: 120px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #ddd;
}

.footer-bottom .payment-methods img {
    width: 50px;
    margin-right: 10px;
    vertical-align: middle;
}



/* fin footer */

/*DESCRIPCION */
.details-area {
    background: linear-gradient(135deg, #f8f9fa, #e9f2ff);
    padding: 60px 0;
}

.testimonial-horizontal {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.author-box {
    flex: 0 0 220px;
    text-align: center;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #007bff;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.author-company {
    font-size: 15px;
    color: #666;
}

.testimonial-box {
    position: relative;
    flex: 1;
}

.testimonial-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 70px;
    color: #007bff;
    opacity: 0.15;
}

/* FIN DESCRIPCION */

/* MAP */
:root {
    --brand: #0d6efd;
    --map-bg: #0b1220;
    --map-card: #1f293b;
    --map-text: #ffffff;
    --map-muted: #c4cad3;
    --map-orange: #f5a000;
}

* {
    box-sizing: border-box
}

.map-section {
    width: 100%;
    padding: 45px 0;
    background: #0b1220;
}

.map-section .container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.map-header {
    margin-bottom: 22px;
    text-align: center;
}

.map-header h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 700;
}

.map-header p {
    margin: 0;
    color: #c4cad3;
    font-size: 14px;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.20);
}

/* Tarjeta flotante */
.map-card {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    width: 320px;
    max-width: calc(100% - 36px);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(31, 41, 59, 0.94);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28);
    color: #ffffff;
    text-align: center;
}

.map-card h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.map-address {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #c4cad3;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.map-address i {
    flex-shrink: 0;
    color: #f5a000;
    font-size: 13px;
}

.map-info {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.map-info li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #f1f5f9;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
}

.map-info li span {
    width: 18px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f5a000;
}

.map-info li span i {
    color: #f5a000;
}

.map-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.map-actions .btn-primary,
.map-actions .btn-outline {
    min-height: 40px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform .2s ease,
        background-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
    will-change: transform;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 18px var(--ring);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* BOTÓN GOOGLE MAPS */

.map-actions .btn-primary {
    flex: 1;
    border: none;
    background: #1677ff;
    color: #ffffff;
    box-shadow:
        0 7px 18px rgba(22, 119, 255, .25);
}

.map-actions .btn-primary:hover {
    background: #0567e8;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* BOTÓN LLAMAR */

.map-actions .btn-outline {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #e20f4e;
    color: #ffffff;
}

.map-actions .btn-outline:hover {
    background: #d80c0c;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Contenedor del mapa con relación de aspecto 16:9 */
.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(8%);
    transition:
        filter .3s ease,
        transform .3s ease;
}

.map-embed iframe:hover {
    filter: grayscale(0%);
}

/* =====================================================
   MENSAJE SIN MAPA
===================================================== */

.map-no-data {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #64748b;

    background: #f8fafc;

    text-align: center;
}

.map-no-data i {
    color: #f5a000;

    font-size: 40px;
}

.map-no-data p {
    margin: 0;

    font-size: 14px;
}

/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 768px) {

    .map-section {
        padding: 35px 12px;
    }

    .map-section .container {
        width: 100%;
    }

    .map-header {
        margin-bottom: 18px;
    }

    .map-header h2 {
        font-size: 26px;
    }

    .map-header p {
        font-size: 13px;
    }

    .map-wrapper {
        border-radius: 18px;
    }

    /*
       Seguimos dejando la tarjeta flotando
       sobre el mapa.
    */

    .map-card {
        top: 14px;
        left: 14px;

        width: 310px;
        max-width: calc(100% - 28px);

        padding: 15px;

        border-radius: 16px;
    }

    .map-card h3 {
        font-size: 17px;
    }

    .map-address,
    .map-info li {
        font-size: 12px;
    }

    .map-actions .btn-primary,
    .map-actions .btn-outline {
        font-size: 11px;
        padding: 9px 11px;
    }

    .map-embed {
        aspect-ratio: auto;

        height: 480px;
    }
}

/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 520px) {

    .map-section {
        padding: 28px 10px;
    }

    .map-header {
        margin-bottom: 16px;
    }

    .map-header h2 {
        font-size: 23px;
    }

    .map-header p {
        padding: 0 8px;

        font-size: 12px;
    }

    .map-wrapper {
        border-radius: 15px;
    }

    .map-card {
        top: 12px;
        left: 12px;
        right: 12px;

        width: auto;
        max-width: none;

        padding: 14px 13px;

        border-radius: 15px;
    }

    .map-card h3 {
        margin-bottom: 6px;

        font-size: 17px;
    }

    .map-address {
        margin-bottom: 8px;

        font-size: 12px;
    }

    .map-info {
        gap: 5px;
    }

    .map-info li {
        font-size: 12px;
    }

    /*
       Solo en celular apilamos los botones.
    */

    .map-actions {
        margin-top: 12px;

        flex-direction: column;

        gap: 7px;
    }

    .map-actions .btn-primary,
    .map-actions .btn-outline {
        width: 100%;

        min-height: 38px;

        flex: none;

        font-size: 12px;
    }

    .map-embed {
        height: 540px;
    }
}

/* =====================================================
   CELULAR MUY PEQUEÑO
===================================================== */

@media screen and (max-width: 360px) {

    .map-card {
        top: 9px;
        left: 9px;
        right: 9px;

        padding: 12px 10px;
    }

    .map-card h3 {
        font-size: 16px;
    }

    .map-address,
    .map-info li {
        font-size: 11px;
    }

    .map-actions .btn-primary,
    .map-actions .btn-outline {
        min-height: 36px;

        padding: 8px 10px;

        font-size: 11px;
    }

    .map-embed {
        height: 520px;
    }
}

/* =====================================================
   FIN MAP
===================================================== */
/* Responsivo */
@media (max-width: 768px) {
    .map-card {
        position: static;
        /* la tarjeta pasa arriba del mapa */
        width: 100%;
        border-radius: 18px;
        margin: 12px;
    }

    .map-wrapper {
        border-radius: 20px;
        overflow: visible;
        /* para que la tarjeta no se recorte */
    }

    .map-embed {
        border-radius: 20px;
        overflow: hidden;
    }
}

/* Modo oscuro opcional */
@media (prefers-color-scheme: dark) {
    :root {
        --text: #e6e6e6;
        --muted: #a3a3a3;
        --bg: #0b1220;
        --card: #0f172a;
        --ring: rgba(13, 110, 253, .25);
    }

    .btn-outline {
        background: #0f172a;
        color: #e6e6e6;
        border-color: #374151;
    }

    .map-card {
        background: #0f172acc;
        border-color: #1f2937;
    }
}

/* FIN MAP */

/* ========== MINI CART MODAL ========== */
#mini-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

#mini-cart.open {
    right: 0;
}

/* HEADER del mini-cart */
.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    color: #1e1e1e;
    padding: 10px 15px;
    border-bottom: 1px solid #002080;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.mini-cart-header a {
    color: #000000;
    font-size: 22px;
    margin-right: 5px;
    text-decoration: none;
    background: transparent;
    transition: transform 0.2s ease;
}

.mini-cart-header a:hover {
    transform: scale(1.2);
}

.mini-cart-header h3 {
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.mini-cart-header .close-btn {
    background: transparent;
    border: none;
    color: #ff505f;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mini-cart-header .close-btn:hover {
    color: #ff4d4d;
}

/* LISTA DE PRODUCTOS */
.mini-cart-items {
    flex: 1;
    background-color: #f4f4f4;
    overflow-y: auto;
    padding: 15px 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-item-details {
    flex: 1;
    margin-right: 10px;
}

.cart-item-details strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Cantidad */
.quantity-selector button {
    background-color: #003399;
    color: #fff;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    transition: background 0.3s, transform 0.2s;
}

.quantity-selector button:hover {
    background-color: #001f70;
    transform: scale(1.1);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 0 5px;
    padding: 3px 0;
}

/* Precio */
.cart-item-price {
    font-weight: bold;
    margin-right: 10px;
    min-width: 60px;
    text-align: right;
}

/* Eliminar */
.cart-item-remove {
    background: transparent;
    border: none;
    color: #ff4d4f;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.cart-item-remove:hover {
    color: #d9363e;
    transform: scale(1.2);
}

/* FOOTER */
.mini-cart-footer {
    padding: 15px 20px;
    border-top: 1px solid #0a0000;
    background-color: #ffffff;
    text-align: center;
}

.mini-cart-footer .total {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.mini-cart-footer .btn-a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}

.mini-cart-footer .btn-a:hover {
    background-color: #128C7E;
}

/* Scrollbar estilizada */
.mini-cart-items::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background: #003399;
    border-radius: 3px;
}

.cart-count {
    position: absolute;
    top: -5px;
    /* Ajusta según tu icono */
    right: -10px;
    /* Ajusta según tu icono */
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Asegura que esté sobre el icono */
}

#btnCarrito {
    position: relative;
    display: inline-block;
}

/* ========== FIN MINI CART MODAL ========== */

/* Redes sociales en header */
.social-icons {
    margin-top: 11px;
    display: flex;
    gap: 0px;
    justify-content: flex-end;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    /* azul corporativo */
    color: #003399;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #b67702;
    color: #ffffff;
    border: 1px solid #0634e5;
    transform: translateY(-3px);
}

/* =====================================================
   HEADER RESPONSIVE
===================================================== */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /*
    En móvil dejamos de fijar el header.
    Así no necesitas calcular un padding-top exacto.
    */
    .main-header {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    body {
        padding-top: 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Barra naranja superior */
    .top-bar {
        width: 100%;
        padding: 5px 0;
        font-size: 9px;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .top-bar .left,
    .top-bar .right {
        width: 50%;
        margin: 0;
        line-height: 1.2;
        white-space: normal;
    }

    .top-bar .right {
        text-align: right;
    }

    /* Navbar */
    .navbar {
        width: 100%;
        padding: 10px 0;
    }

    .nav-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* Logo */
    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        width: 58px;
        height: 58px;
        margin: 0;
        object-fit: contain;
        border-radius: 50%;
        display: block;
    }

    /* Carrito, usuario y redes */
    .icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        max-width: 175px;
    }

    .icons>a {
        margin: 0;
        font-size: 17px;
    }

    .social-icons {
        width: 100%;
        margin-top: 4px;
        display: flex;
        justify-content: flex-end;
        gap: 5px;
    }

    .social-icons a {
        width: 27px;
        height: 27px;
        margin: 0;
        font-size: 12px;
    }

    /* Menú debajo del logo */
    .menu {
        order: 3;
        width: 100%;
        margin: 0;
        padding: 8px 0 0;

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        gap: 6px;
        list-style: none;
    }

    .menu li {
        margin: 0;
        padding: 0;
    }

    .menu li a {
        display: block;
        padding: 7px 9px;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
        border-radius: 5px;
    }

    .menu a.active {
        padding: 7px 9px;
    }

    /* Slider */
    .slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .slider .slide {
        width: 100%;
        max-width: 100%;
        height: 280px;
    }

    .slider img {
        width: 100%;
        height: 280px;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    /* Mini carrito */
    #mini-cart {
        width: min(360px, 100%);
        right: -100%;
    }

    #mini-cart.open {
        right: 0;
    }
}

@media screen and (max-width: 480px) {

    .top-bar {
        font-size: 8px;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .menu {
        gap: 4px;
    }

    .menu li a,
    .menu a.active {
        padding: 6px 7px;
        font-size: 10px;
    }

    .social-icons a {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }

    .slider .slide,
    .slider img {
        height: 240px;
    }
}

/* ==========================================
   DESCRIPCIÓN RESPONSIVE
========================================== */

@media screen and (max-width: 768px) {

    .details-area {
        padding: 30px 12px;
    }

    .testimonial-horizontal {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 18px;
        border-radius: 16px;
    }

    .author-box {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .author-img {
        width: 110px;
        height: 110px;
        display: block;
        margin: 0 auto 12px;
        object-fit: contain;
    }

    .author-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .author-company {
        font-size: 14px;
        margin-bottom: 0;
    }

    .testimonial-box {
        width: 100%;
        position: relative;
        text-align: center;
    }

    .testimonial-box p {
        width: 100%;
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
        overflow-wrap: break-word;
    }

    .quote-icon {
        top: -15px;
        left: 0;
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {

    .testimonial-horizontal {
        padding: 22px 15px;
    }

    .author-img {
        width: 95px;
        height: 95px;
    }

    .testimonial-box p {
        font-size: 14px;
        line-height: 1.55;
        text-align: left;
    }
}