:root {
    --gold: #97732c;
    --black: #221f1f;
    --green: #57a639;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:focus {
    outline: none;
}

.header-top {
    background: var(--black);
    height: 16px;
    width: 100%;
}

.site-header {
    background: var(--gold);
    color: var(--white);
    padding: 12px 40px 20px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: visible;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.top-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-items {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-item img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--white);
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.social-icons img {
    width: 19px;
    height: 19px;
}

.separator-line {
    height: 1px;
    background: var(--white);
    opacity: 0.45;
    margin: 10px 0 18px;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.brand-logo-circle {
    width: 96px;
    height: 96px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.brand-logo-circle img {
    width: 84%;
    height: 84%;
    object-fit: contain;
}

.brand-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.brand-text-main {
    color: var(--green);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
}

.brand-text-sub {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.18);
    margin-left: 12px;
    z-index: 1001;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.28);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    margin: 3px 0;
    transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Ocultar botón X en desktop */
.menu-close-btn {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 36px;
    background: #8b6b29;
    border-radius: 32px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.main-nav li {
    position: relative;
    font-size: 11px;
    white-space: nowrap;
}

.main-nav a {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
    padding-bottom: 2px;
    position: relative;
    transition: transform 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    width: 100%;
}

.has-submenu>a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.has-submenu>a .arrow {
    font-size: 9px;
    transition: transform 0.2s ease;
}

.has-submenu .submenu {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    background: rgba(34, 31, 31, 0.97);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.22s ease;
}

.has-submenu:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 8px 18px;
    font-size: 11px;
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contenido {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================== */
/* SECCIÓN CONTACTO+HORARIOS - SUPER COMPACTA */
/* ===================== */

.contact-hours-section {
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    box-sizing: border-box;
    position: relative;
}

.contact-hours-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #000000;
    border-radius: 0;
}

.contact-hours-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ch-main-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.ch-contact,
.ch-hours-card {
    flex: 1 1 0;
    max-width: 300px;
    min-width: 220px;
}

.ch-contact {
    display: flex;
    flex-direction: column;
}

.ch-contact h2 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #221f1f;
}

.ch-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-contact-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 11px;
}

.ch-contact-list img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.ch-label {
    font-weight: 600;
    color: #221f1f;
    font-size: 10px;
}

.ch-contact-list p {
    margin: 1px 0 0;
    line-height: 1.3;
    color: #333;
    font-size: 10px;
}

.ch-contact-list p a {
    color: #333;
    transition: color 0.2s ease;
}

.ch-contact-list p a:hover {
    color: #97732c;
    text-decoration: underline;
}

.ch-hours-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

.ch-hours-card h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #221f1f;
}

.ch-hours-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ch-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ch-hours-row:last-child {
    border-bottom: none;
}

.ch-day {
    font-weight: 600;
    color: #221f1f;
}

.ch-time {
    font-weight: 500;
    color: #555;
}

.ch-closed {
    color: #c02626;
    font-weight: 700;
}

/* ===================== */
/*       FOOTER          */
/* ===================== */

.main-footer {
    background: rgba(34, 31, 31, 1);
    color: #ffffff;
    padding: 50px 0 30px 0;
    width: 100%;
    position: relative;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer centrado */
/* En base (móvil / tablet) dejamos 2 columnas.
   En escritorio (>1024px) pasamos a 4 columnas. */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* móviles y pantallas pequeñas */
    gap: 40px;
    width: 100%;
    max-width: 800px;
    justify-items: center;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 300px;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}

.footer-column ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    text-align: left;
}

.footer-column ul li {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 400;
}

.footer-column ul li a {
    color: #dddddd;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-divider {
    display: block;
    margin: 28px 0 18px 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0.35;
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
}

/* ========= */
/* DESKTOP   */
/* ========= */
@media (min-width: 1025px) {
    .footer-inner {
        padding: 0 40px;
    }

    /* Aquí sí ponemos 4 columnas SOLO en escritorio */
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 1100px;
        gap: 40px;
        justify-items: center;
        margin: 0 auto;
    }
}

@media (min-width: 1441px) {

    .header-inner,
    .contenido,
    .footer-inner {
        max-width: 1600px;
    }

    .contact-hours-inner {
        max-width: 750px;
    }
}

@media (max-width: 1280px) and (min-width: 1025px) {
    .site-header {
        padding: 10px 30px 16px;
    }

    .brand-row {
        gap: 24px;
    }

    .brand-logo-circle {
        width: 80px;
        height: 80px;
    }

    .brand-text-main {
        font-size: 22px;
    }

    .brand-text-sub {
        font-size: 11px;
    }

    .main-nav ul {
        gap: 12px;
        padding: 8px 20px;
    }

    .main-nav li {
        font-size: 9px;
    }

    .top-contact-row {
        font-size: 10px;
    }

    .contact-items {
        gap: 16px;
    }

    .has-submenu:hover .submenu {
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .footer-inner {
        padding: 0 30px;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .site-header {
        padding: 8px 20px 14px;
    }

    .brand-row {
        gap: 16px;
    }

    .brand-logo-circle {
        width: 68px;
        height: 68px;
    }

    .brand-text-main {
        font-size: 18px;
    }

    .brand-text-sub {
        font-size: 10px;
    }

    .main-nav ul {
        gap: 8px;
        padding: 7px 14px;
    }

    .main-nav li {
        font-size: 8px;
    }

    .main-nav a {
        letter-spacing: 0.2px;
    }

    .top-contact-row {
        font-size: 9px;
    }

    .contact-items {
        gap: 12px;
    }

    .contact-item img {
        width: 12px;
        height: 12px;
    }

    .social-icons img {
        width: 16px;
        height: 16px;
    }

    .separator-line {
        margin: 8px 0 12px;
    }

    .contenido {
        padding: 30px;
    }

    /* Contacto tablet */
    .contact-hours-section {
        padding: 16px 0;
    }

    .contact-hours-inner {
        padding: 0 16px;
        max-width: 600px;
    }

    .ch-main-row {
        gap: 16px;
    }

    .ch-contact,
    .ch-hours-card {
        max-width: 260px;
        min-width: 200px;
    }

    .ch-contact h2 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .ch-contact-list li {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .ch-contact-list img {
        width: 12px;
        height: 12px;
    }

    .ch-label {
        font-size: 9px;
    }

    .ch-contact-list p {
        font-size: 9px;
    }

    .ch-hours-card {
        padding: 10px 14px;
    }

    .ch-hours-card h3 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .ch-hours-row {
        font-size: 9px;
        padding: 3px 0;
    }

    .has-submenu:hover .submenu {
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .main-footer {
        padding: 40px 0 24px 0;
    }

    .footer-inner {
        padding: 0 20px;
    }

    /* Aquí forzamos 2 columnas en tablet */
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        max-width: 600px;
        justify-items: center;
        margin: 0 auto;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul li {
        font-size: 12px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .site-header {
        padding: 6px 14px 10px;
    }

    .brand-row {
        gap: 10px;
    }

    .brand-logo-circle {
        width: 54px;
        height: 54px;
    }

    .brand-text-main {
        font-size: 15px;
    }

    .brand-text-sub {
        font-size: 8px;
    }

    .main-nav ul {
        gap: 5px;
        padding: 5px 10px;
    }

    .main-nav li {
        font-size: 7px;
    }

    .main-nav a {
        letter-spacing: 0.1px;
        padding-bottom: 1px;
    }

    .top-contact-row {
        font-size: 7px;
    }

    .contact-items {
        gap: 8px;
    }

    .contact-item img {
        width: 9px;
        height: 9px;
    }

    .social-icons img {
        width: 13px;
        height: 13px;
    }

    .separator-line {
        margin: 6px 0 8px;
    }

    .has-submenu:hover .submenu {
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    /* Contacto 900px */
    .contact-hours-section {
        padding: 14px 0;
    }

    .contact-hours-inner {
        padding: 0 12px;
        max-width: 500px;
    }

    .ch-main-row {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .ch-contact,
    .ch-hours-card {
        max-width: 100%;
        min-width: 100%;
    }

    .ch-contact h2 {
        font-size: 12px;
        text-align: center;
    }

    .ch-contact-list li {
        font-size: 9px;
    }

    .ch-hours-card {
        padding: 10px 12px;
    }

    .ch-hours-card h3 {
        font-size: 11px;
    }

    .ch-hours-row {
        font-size: 9px;
    }
}

@media (max-width: 768px) {

    /* Reorganizar header móvil: contactos en línea arriba, redes sociales más pequeñas abajo centradas */
    .top-contact-row {
        flex-direction: column;
        align-items: center;
        font-size: 9px;
        gap: 8px;
    }

    .contact-items {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
    }

    .contact-item {
        gap: 3px;
        flex-shrink: 1;
    }

    .contact-item img {
        width: 10px;
        height: 10px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 8px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    /* Iconos de redes sociales más pequeños en móvil */
    .social-icons img {
        width: 16px;
        height: 16px;
    }

    .brand-row {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 1;
        gap: 12px;
    }

    /* Logo más pequeño y perfectamente circular */
    .brand-logo-circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    /* Texto del título más compacto y uniforme */
    .brand-texts {
        gap: 2px;
    }

    .brand-text-main {
        font-size: 16px;
        line-height: 1.1;
    }

    .brand-text-sub {
        font-size: 9px;
        line-height: 1.2;
    }

    .contenido {
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        flex: 0;
        position: relative;
    }

    /* Botón X único - solo visible cuando el menú está abierto */
    .menu-close-btn {
        display: none;
        position: fixed;
        top: 20px;
        right: -300px;
        width: 50px;
        height: 50px;
        background: var(--gold);
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--white);
        font-weight: 300;
        cursor: pointer;
        z-index: 1002;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: none;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .main-nav ul.active~.menu-close-btn {
        display: flex;
        right: 20px;
    }

    .menu-close-btn:hover {
        background: #7d6226;
        transform: rotate(90deg);
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        padding: 80px 0 20px 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 0;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
    }

    .main-nav ul.active {
        right: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin: 0;
        padding: 0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        width: 100%;
        padding: 18px 28px;
        font-size: 14px;
        font-weight: 600;
        display: block;
        color: var(--black);
        letter-spacing: 0.3px;
        transition: all 0.25s ease;
        position: relative;
    }

    .main-nav a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gold);
        transition: height 0.25s ease;
        border-radius: 0 4px 4px 0;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        transform: none;
        background: rgba(151, 115, 44, 0.08);
        color: var(--gold);
        padding-left: 32px;
    }

    .main-nav a:hover::before {
        height: 60%;
    }

    .has-submenu>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .has-submenu>a .arrow {
        font-size: 12px;
        margin-left: 8px;
        transition: transform 0.3s ease;
        color: var(--gold);
    }

    .has-submenu.active>a {
        background: rgba(151, 115, 44, 0.08);
        color: var(--gold);
    }

    .has-submenu.active>a .arrow {
        transform: rotate(180deg);
    }

    .has-submenu .submenu {
        position: static !important;
        background: rgba(87, 166, 57, 0.04);
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        top: auto;
        left: auto;
        transform: none;
        display: block;
        border-left: 3px solid var(--green);
    }

    .has-submenu.active .submenu {
        max-height: 250px;
        opacity: 1;
    }

    .submenu li {
        border: none;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .submenu li:last-child {
        border-bottom: none;
    }

    .submenu a {
        padding: 14px 28px 14px 40px;
        font-size: 13px;
        font-weight: 500;
        color: #555;
        border: none;
    }

    .submenu a::before {
        display: none;
    }

    .submenu a:hover {
        background: rgba(87, 166, 57, 0.08);
        color: var(--green);
        padding-left: 44px;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
        transition: background 0.3s ease;
        z-index: 900;
    }

    body.menu-open::after {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: all;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Contacto móvil 768px */
    .contact-hours-section {
        padding: 14px 0;
    }

    .contact-hours-inner {
        padding: 0 12px;
    }

    .ch-main-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .ch-contact,
    .ch-hours-card {
        max-width: 100%;
        min-width: 100%;
    }

    .ch-contact h2 {
        font-size: 12px;
        text-align: center;
        margin-bottom: 8px;
    }

    .ch-contact-list li {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .ch-contact-list img {
        width: 12px;
        height: 12px;
    }

    .ch-label {
        font-size: 8px;
    }

    .ch-contact-list p {
        font-size: 8px;
    }

    /* Horarios móvil */
    .ch-hours-card {
        padding: 10px 12px;
    }

    .ch-hours-card h3 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .ch-hours-content {
        gap: 4px;
    }

    .ch-hours-row {
        font-size: 9px;
        padding: 3px 0;
    }

    .main-footer {
        padding: 30px 0 20px 0;
    }

    .footer-inner {
        padding: 0 16px;
    }

    /* Footer 2x2 centrado en móvil */
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 32px;
        max-width: 500px;
        justify-items: center;
        margin: 0 auto;
    }

    .footer-column {
        align-items: flex-start;
        text-align: left;
        max-width: 200px;
    }

    .footer-column h4 {
        font-size: 13px;
        text-align: left;
    }

    .footer-column ul {
        padding-left: 18px;
    }

    .footer-column ul li {
        font-size: 11px;
    }

    .footer-divider {
        margin: 20px 0 14px 0;
    }

    .footer-copy {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px 16px 14px;
        border-radius: 0 0 16px 16px;
    }

    .brand-logo-circle {
        width: 55px;
        height: 55px;
    }

    .brand-text-main {
        font-size: 15px;
    }

    .brand-text-sub {
        font-size: 8px;
    }

    .top-contact-row {
        font-size: 8px;
    }

    .contact-item img {
        width: 9px;
        height: 9px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 7px;
    }

    .social-icons img {
        width: 14px;
        height: 14px;
    }

    .main-nav ul {
        width: 280px;
        right: -280px;
    }

    .menu-close-btn {
        right: -280px;
    }

    .main-nav ul.active~.menu-close-btn {
        right: 16px;
    }

    .contact-items {
        gap: 6px;
    }

    .contenido {
        padding: 16px;
    }

    /* Contacto 480px */
    .contact-hours-section {
        padding: 12px 0;
    }

    .contact-hours-inner {
        padding: 0 10px;
    }

    .ch-main-row {
        gap: 8px;
    }

    .ch-contact h2 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .ch-contact-list li {
        font-size: 8px;
        gap: 6px;
        margin-bottom: 5px;
    }

    .ch-contact-list img {
        width: 10px;
        height: 10px;
    }

    .ch-label {
        font-size: 7px;
    }

    .ch-contact-list p {
        font-size: 7px;
    }

    .ch-hours-card {
        padding: 8px 10px;
    }

    .ch-hours-card h3 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .ch-hours-row {
        font-size: 8px;
        padding: 2px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 28px;
        max-width: 400px;
    }

    .footer-column {
        max-width: 160px;
    }

    .footer-column h4 {
        font-size: 12px;
    }

    .footer-column ul {
        padding-left: 16px;
    }

    .footer-column ul li {
        font-size: 10px;
    }

    .footer-copy {
        font-size: 9px;
    }
}

@media (max-width: 380px) {
    .brand-logo-circle {
        width: 50px;
        height: 50px;
    }

    .brand-text-main {
        font-size: 14px;
    }

    .brand-text-sub {
        font-size: 7px;
    }

    .main-nav ul {
        width: 260px;
        right: -260px;
    }

    .menu-close-btn {
        right: -260px;
    }

    .main-nav ul.active~.menu-close-btn {
        right: 12px;
    }

    /* Contacto 380px */
    .contact-hours-section {
        padding: 10px 0;
    }

    .contact-hours-inner {
        padding: 0 8px;
    }

    .ch-main-row {
        gap: 6px;
    }

    .ch-contact h2 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .ch-contact-list li {
        font-size: 7px;
        margin-bottom: 4px;
    }

    .ch-contact-list img {
        width: 9px;
        height: 9px;
    }

    .ch-label {
        font-size: 6px;
    }

    .ch-contact-list p {
        font-size: 6px;
    }

    .ch-hours-card {
        padding: 6px 8px;
    }

    .ch-hours-card h3 {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .ch-hours-row {
        font-size: 7px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
        max-width: 320px;
    }

    .footer-column {
        max-width: 140px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-column ul {
        padding-left: 14px;
    }

    .footer-column ul li {
        font-size: 9px;
    }

    .footer-copy {
        font-size: 8px;
    }
}