@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {

    --teal: #10b981;
    --teal-dark: #059669;
    --teal-darker: #047857;
    --teal-light: #6ee7b7;
    --teal-bg: #ecfdf5;
    --teal-soft: #d1fae5;

    --accent: #059669;
    --accent-dark: #047857;

    --navy: #111827;
    --navy-2: #1f2937;
    --navy-3: #374151;

    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-light: #f1f5f9;
    --gray-border: #e2e8f0;
    --gray-text: #475569;
    --gray-mid: #94a3b8;
    --dark: #0f172a;
    --darker: #020617;
    --top-bar: #111827;

    --font-main: 'Open Sans', Arial, Helvetica, sans-serif;

    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
    --shadow: 0 4px 14px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 28px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--gray-text);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.25s;
}
.header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.07); }

.navbar-top {
    background: var(--top-bar);
    padding: 6px 0;
    font-size: 12px;
    color: #e0e0e0;
}
.navbar-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.top-contact {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.top-contact a {
    color: #e0e0e0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.top-contact a:hover { color: var(--accent); }
.top-contact i { color: var(--teal-light); font-size: 12px; }

.top-social { display: flex; gap: 8px; align-items: center; }
.top-social a {
    color: #e0e0e0;
    text-decoration: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background .2s, color .2s;
}
.top-social a:hover { background: var(--teal); color: var(--white); }

.navbar-main { padding: 0; border-bottom: 1px solid var(--gray-border); }
.navbar-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 76px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
}

.nav-main {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
}
.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 24px 14px;
    display: block;
    transition: color .2s;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px;
    bottom: 14px;
    height: 2px;
    background: var(--teal);
}

.btn-reservar {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: background .2s;
    margin-left: 8px;
}
.btn-reservar:hover { background: var(--accent-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--teal);
    transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.hero-wrap {
    margin-top: 126px;
    padding: 28px 0 30px;
    background: var(--off-white);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: stretch;
}

.hero-banner {
    position: relative;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}
.hero-banner::before {

    content: '';
    position: absolute;
    left: -120px; bottom: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.38), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-banner::after {

    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(16,185,129,0.24), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-banner-inner {
    position: relative;
    z-index: 2;
    padding: 50px 44px;
    max-width: 600px;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-banner h1 {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--white);
}
.hero-banner h1 strong { font-weight: 700; }
.hero-banner p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 22px;
    max-width: 480px;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-border);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}
.hero-panel-title {
    text-align: center;
    color: var(--teal);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 6px;
}
.panel-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background .2s, transform .2s;
}
.panel-btn i { margin-right: 6px; }
.panel-btn--primary { background: var(--accent); color: var(--white); }
.panel-btn--primary:hover { background: var(--accent-dark); }
.panel-btn--secondary { background: var(--teal); color: var(--white); }
.panel-btn--secondary:hover { background: var(--teal-dark); }
.panel-btn--outline {
    background: transparent;
    border: 1px solid var(--teal);
    color: var(--teal);
}
.panel-btn--outline:hover { background: var(--teal-bg); }

.panel-sub {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-border);
}
.panel-sub-title {
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 8px;
}
.panel-sub ul { list-style: none; padding: 0; margin: 0; }
.panel-sub li { margin-bottom: 6px; }
.panel-sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--gray-text);
    font-size: 13px;
    padding: 6px 0;
    transition: color .2s;
}
.panel-sub a:hover { color: var(--teal); }
.panel-sub a i { color: var(--teal); font-size: 11px; }

.calugas {
    padding: 24px 0 40px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-border);
}
.calugas-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.caluga {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-decoration: none;
    color: var(--gray-text);
    min-height: 130px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.caluga:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.caluga-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--teal-bg);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 22px;
    transition: background .25s, color .25s;
}
.caluga:hover .caluga-icon {
    background: var(--teal);
    color: var(--white);
}
.caluga-title {
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.btn-primary {
    display: inline-block;
    padding: 11px 26px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: none;
    border-radius: var(--radius);
    transition: background .2s;
    cursor: pointer;
    font-family: var(--font-main);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary i { margin-right: 6px; }

.btn-secondary {
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1.5px solid var(--white);
    border-radius: var(--radius);
    transition: background .2s, color .2s;
    cursor: pointer;
    font-family: var(--font-main);
}
.btn-secondary:hover { background: var(--white); color: var(--teal); }

.btn-teal {
    display: inline-block;
    padding: 11px 26px;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: var(--radius);
    transition: background .2s;
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 26px;
}

.section { padding: 56px 0; }
.section-gray { background: var(--gray-light); }
.section-teal-tint { background: var(--teal-soft); }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 26px;
    font-weight: 300;
    color: var(--teal-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.section-header h2 strong { font-weight: 700; }
.section-header p {
    color: var(--gray-text);
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--teal);
    border: none;
    margin: 10px auto 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.about-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 30px 26px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.about-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--teal-bg);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
}
.about-card h3 {
    color: var(--teal-dark);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: var(--teal-bg);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}
.service-card h3 {
    color: var(--teal-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    color: var(--gray-text);
    font-size: 13.5px;
    line-height: 1.6;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 5px; height: 5px;
    background: var(--teal);
    border-radius: 50%;
}

.tienda-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.tienda-cat {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-text);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tienda-cat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.tienda-cat-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--teal-bg);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    transition: background .25s, color .25s;
}
.tienda-cat:hover .tienda-cat-icon {
    background: var(--teal);
    color: var(--white);
}
.tienda-cat h4 {
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.tienda-cat p {
    font-size: 11.5px;
    color: var(--gray-mid);
    line-height: 1.4;
}

.tienda-cta {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.tienda-cta-text h3 {
    color: var(--teal-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.tienda-cta-text p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 16px;
}
.tienda-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-strip {
    background: var(--teal);
    padding: 44px 0;
    color: var(--white);
    text-align: center;
}
.cta-strip h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
}
.cta-strip h2 strong { font-weight: 700; }
.cta-strip p {
    opacity: 0.92;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: flex-start;
}
.contact-info h3 {
    color: var(--teal-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-info > p {
    color: var(--gray-text);
    margin-bottom: 22px;
    font-size: 14px;
}
.contact-info > p strong { color: var(--dark); }

.contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    transition: border-color .2s;
}
.contact-item:hover { border-color: var(--teal); }
.contact-item-icon {
    width: 40px; height: 40px;
    background: var(--teal-bg);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-item h4 {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}
.contact-item span { color: var(--gray-text); font-size: 13.5px; }

.social-links { display: flex; gap: 8px; }
.social-links a {
    width: 38px; height: 38px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: background .2s;
}
.social-links a:hover { background: var(--teal-dark); }

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    color: var(--dark);
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.footer {
    background: var(--navy);
    padding: 44px 0 0;
    color: #cbd5e1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}
.footer-logo {
    height: 54px;
    width: auto;
    max-width: 260px;
    margin-bottom: 14px;

    background: transparent;
}
.footer-brand p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
}
.footer-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; font-size: 13px; color: #cbd5e1; }
.footer-col ul li i { margin-right: 6px; color: var(--teal); }
.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: background .2s;
}
.footer-social a:hover { background: var(--teal); }

.footer-bottom {
    text-align: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: #94a3b8; font-size: 12px; }

.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 54px; height: 54px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    transition: transform .2s, background .2s;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.whatsapp-float:hover { background: #1fb855; transform: scale(1.06); }
.whatsapp-float i { color: var(--white); font-size: 26px; }

.back-to-top {
    position: fixed;
    bottom: 22px; left: 22px;
    width: 40px; height: 40px;
    background: var(--teal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, background .2s;
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal-dark); }
.back-to-top i { color: var(--white); font-size: 14px; }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { order: 2; }
    .calugas-row { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .tienda-cats { grid-template-columns: repeat(3, 1fr); }
    .tienda-cta { grid-template-columns: 1fr; text-align: center; }
    .tienda-cta-actions { align-items: center; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .navbar-top { display: none; }

    .nav-main {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        transition: right .3s;
        z-index: 1000;
        box-shadow: -4px 0 16px rgba(0,0,0,0.12);
        gap: 0;
        overflow-y: auto;
    }
    .nav-main.open { right: 0; }
    .nav-link {
        padding: 14px 0; width: 100%;
        border-bottom: 1px solid var(--gray-border);
    }
    .nav-link.active::after { display: none; }
    .btn-reservar { margin: 14px 0 0; display: block; text-align: center; }

    .hero-wrap { margin-top: 70px; }
    .hero-banner { min-height: 280px; }
    .hero-banner-inner { padding: 36px 26px; }
    .hero-banner h1 { font-size: 26px; }

    .calugas-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .tienda-cats { grid-template-columns: repeat(2, 1fr); }
    .contact-row { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 40px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand p { max-width: none; }

    .whatsapp-float { width: 50px; height: 50px; }
    .whatsapp-float i { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-banner h1 { font-size: 22px; }
    .calugas-row { grid-template-columns: 1fr 1fr; }
    .tienda-cats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}
