/* =========================================
   1. VARIABLES Y RESETEO BASE
   ========================================= */
:root {
    /* Paleta Monocromática */
    --color-bg: #FFFFFF;
    --color-surface: #F3F4F6; /* Gris muy suave para fondos secundarios */
    --color-text-main: #111827; /* Negro carbón para mejor lectura */
    --color-text-muted: #6B7280; /* Gris medio para tallas y detalles */
    
    /* Espaciados y Radios */
    --radius-sm: 4px;
    --transition: all 0.3s ease;
}

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

/* =========================================
   LOADING OVERLAY
   ========================================= */
body.no-scroll {
    overflow: hidden;
}

html.is-loading body > *:not(.loading-overlay) {
    visibility: hidden;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.loading-logo-wrapper {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
               logoPulse 2s ease-in-out 0.8s infinite;
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loading-line {
    width: 0;
    height: 1px;
    background-color: var(--color-text-main);
    animation: lineExpand 0.6s ease 0.5s forwards;
}

@keyframes logoReveal {
    0%   { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.03); }
}

@keyframes lineExpand {
    0%   { width: 0; opacity: 0; }
    100% { width: 60px; opacity: 1; }
}

@media (max-width: 768px) {
    .loading-logo-wrapper {
        width: 110px;
        height: 110px;
    }
}

/* Scroll suave al hacer clic en enlaces internos */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Suaviza las fuentes en Mac/iOS */
}

/* Contenedor principal para centrar el contenido */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. NAVEGACIÓN (HEADER)
   ========================================= */
.navbar {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.navbar--sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

.navbar--scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.logo span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--color-text-main);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--color-text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-main);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================================
   3. HERO SECTION (BIENVENIDA)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(40px, calc((100vw - 1200px) / 2 + 40px));
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--color-text-main);
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 320px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-text-main);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* =========================================
   4. POR QUÉ ELEGIRNOS
   ========================================= */
.why-us {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.why-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-us__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.why-us__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 4;
}

.why-us__content-col {
    display: flex;
    flex-direction: column;
}

.why-us__label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.why-us__title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.why-us__item:hover {
    border-left-color: var(--color-text-main);
}

.why-us__item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.why-us__item p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =========================================
   5. CATÁLOGO (CSS GRID)
   ========================================= */
.catalog-heading {
    padding-top: 56px;
    padding-bottom: 8px;
    text-align: center;
}

.catalog-heading__title {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.catalog-heading__subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.catalog {
    display: grid;
    /* Magia responsive: crea columnas de mínimo 280px y máximo 1 fracción */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    padding-bottom: 60px;
    padding-top: 40px;
}

/* =========================================
   5. TARJETAS DE PRODUCTO (UI)
   ========================================= */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative; /* Preparación para efectos hover */
}

.product-img {
    width: 100%;
    height: 380px;
    object-fit: cover; /* Evita que las fotos se deformen */
    background-color: var(--color-surface);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: var(--transition);
}

/* Efecto sutil al pasar el mouse por la tarjeta */
.product-card:hover .product-img {
    opacity: 0.9;
}

.product-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
}

.product-size {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Botón Ver — abre el modal de detalle */
.ver-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--color-text-main);
    color: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ver-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* =========================================
   MODAL DE DETALLE DE PRODUCTO
   ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    position: relative;
    background: var(--color-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition);
    line-height: 1;
    padding: 4px;
}

.modal__close:hover {
    color: var(--color-text-main);
}

.modal__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal__img-wrapper {
    position: relative;
}

.modal__main-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background-color: var(--color-surface);
}

.modal__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.modal__arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal__arrow--prev { left: 10px; }
.modal__arrow--next { right: 10px; }

.modal__thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.modal__thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.55;
    transition: var(--transition);
    border: 2px solid transparent;
}

.modal__thumb:hover,
.modal__thumb.active {
    opacity: 1;
    border-color: var(--color-text-main);
}

.modal__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
}

.modal__title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.modal__size {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.modal__price {
    font-size: 1.6rem;
    font-weight: 600;
}

.modal__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    min-height: 20px;
}

.modal__whatsapp-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background-color: var(--color-text-main);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 8px;
}

.modal__whatsapp-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .modal__body {
        grid-template-columns: 1fr;
    }
    .modal {
        padding: 40px 20px 24px;
    }
}

/* =========================================
   6. BOTÓN VER CATÁLOGO COMPLETO
   ========================================= */
.catalog-cta {
    display: flex;
    justify-content: center;
    padding: 8px 0 64px;
}

.catalog-cta__btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--color-text-main);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.catalog-cta__btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* =========================================
   7. HEADER DEL CATÁLOGO COMPLETO
   ========================================= */
.catalog-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 40px 0 0;
}

.catalog-header__title {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.catalog-header__back {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.catalog-header__back:hover {
    color: var(--color-text-main);
}

/* =========================================
   PANEL DE FILTROS (CATÁLOGO)
   ========================================= */
.filters {
    background: var(--color-bg);
    border: 1px solid var(--color-surface);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filters__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.filters__row--bottom {
    grid-template-columns: 220px auto;
    align-items: end;
}

.filters__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filters__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
}

.filters__input,
.filters__select {
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    background: var(--color-bg);
    transition: border-color 0.2s ease;
    width: 100%;
}

.filters__input:focus,
.filters__select:focus {
    outline: none;
    border-color: var(--color-text-main);
}

.filters__input::placeholder {
    color: #D1D5DB;
}

.filters__clear {
    padding: 10px 20px;
    background: var(--color-surface);
    border: none;
    border-radius: 999px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    align-self: end;
}

.filters__clear:hover {
    background: #E5E7EB;
    color: var(--color-text-main);
}

.results-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .filters__row {
        grid-template-columns: 1fr 1fr;
    }
    .filters__row--bottom {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 480px) {
    .filters__row {
        grid-template-columns: 1fr;
    }
    .filters__row--bottom {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-surface);
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.testimonials__content-col {
    display: flex;
    flex-direction: column;
}

.testimonials__label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.testimonials__title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
    color: var(--color-text-main);
}

.testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.testimonials__card:hover {
    border-left-color: var(--color-text-main);
}

.testimonials__quote {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-style: italic;
}

.testimonials__author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 0.5px;
}

.testimonials__image-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.testimonials__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 4;
}

/* =========================================
   CONTACTO
   ========================================= */
.contact {
    padding: 100px 0;
    background-color: var(--color-text-main);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.contact__title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: var(--color-bg);
}

.contact__text {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.7;
}

.contact__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact__btn:hover {
    background-color: var(--color-surface);
    transform: translateY(-2px);
}

.contact__btn--outline {
    background-color: transparent;
    color: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-bg);
}

/* Iconos en los botones de contacto */
.contact__icon-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.contact__btn:hover .icon-whatsapp {
    fill: #25D366;
}

.ig-hover {
    display: none;
}

.contact__btn--outline:hover .ig-default {
    display: none;
}

.contact__btn--outline:hover .ig-hover {
    display: block;
}

/* Columna del mapa */
.contact__map-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9CA3AF;
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact__address-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.contact__map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(1) invert(1) contrast(0.9) brightness(0.7);
    transition: filter 0.4s ease;
}

.contact__map-wrapper:hover iframe {
    filter: none;
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--color-surface);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {

    /* Navbar hamburguesa */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 0.82rem;
    }

    /* Hero — layout apilado en mobile */
    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero img {
        height: 65vw;
        min-height: 280px;
        max-height: 420px;
        object-position: top center;
    }

    .hero-content {
        position: static;
        transform: none;
        padding: 32px 24px 40px;
        background: var(--color-bg);
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Catálogo grid */
    .catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-top: 24px;
    }

    .product-img {
        height: 240px;
    }

    /* Secciones */
    .why-us {
        padding: 56px 0;
    }

    .testimonials {
        padding: 56px 0;
    }

    .testimonials__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials__image-col {
        order: -1;
    }

    .testimonials__image {
        aspect-ratio: 3 / 4;
    }

    .why-us__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us__image {
        aspect-ratio: 3 / 4;
    }

    .why-us__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        padding: 56px 0;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__title {
        font-size: 1.6rem;
    }

    /* Catalog header en catalogo.html */
    .catalog-header {
        flex-direction: column;
        gap: 8px;
        padding: 24px 0 0;
    }
}

@media (max-width: 480px) {

    .logo span {
        display: none;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-img {
        height: 200px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .why-us__title {
        font-size: 1.6rem;
    }

    .testimonials__title {
        font-size: 1.6rem;
    }

    .contact__actions {
        flex-direction: column;
        align-items: stretch;
    }
}