:root {
    --primary-color: #ffcc00;
    /* Dorado brillante estilo neón */
    --bg-dark: #1a1a1a;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #121212;
    color: var(--text-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Estilos del Header */
header {
    background-color: var(--bg-dark);
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* border-bottom eliminado para usar el efecto neón */
}

/* Borde inferior animado neón */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #000 0%,
            var(--primary-color) 25%,
            #000 50%,
            var(--primary-color) 75%,
            #000 100%);
    background-size: 200% 100%;
    animation: moveNeon 15s linear infinite;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5),
        0 0 5px rgba(255, 204, 0, 0.8);
}

@keyframes moveNeon {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 200% 0%;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.6),
        0 0 30px rgba(255, 204, 0, 0.2);
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.logo span {
    color: var(--primary-color);
}

/* Botón Menú Móvil */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Línea decorativa al pasar el cursor (hover) */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Espaciado para el contenido debajo del header fixed */
.content-spacer {
    height: 90px;
}

/* Sección de Inicio (Hero) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../../images/fondo1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    /* Para el degradado inferior */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #121212);
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--primary-color);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 18px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Sección Nosotros */
.nosotros {
    padding: 100px 5%;
    background-color: #121212;
}

.nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nosotros-img {
    position: relative;
}

.nosotros-img img {
    width: 100%;
    border-radius: 10px;
    /* Brillo dorado inicial */
    box-shadow: 0 0 20px rgba(255, 204, 0, 1);
    border: 1px solid rgba(255, 204, 0, 2);
    transition: var(--transition);
    cursor: pointer;
}

.nosotros-img img:hover {
    /* Zoom suave */
    transform: scale(1.05);
    /* Brillo intensificado */
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.5);
    border: 1px solid rgba(255, 204, 0, 0.5);
}

.nosotros-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    top: 20px;
    left: -20px;
    border-radius: 10px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    /* Sombra gris plateada */
    box-shadow: 0 10px 30px rgba(169, 169, 169, 0.4);
}

.experience-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nosotros-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 400;
}

.subtitle-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    display: inline-block;
}

.nosotros-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin: 15px 0 30px;
    line-height: 1.1;
}

.text-muted {
    color: #6b7280;
}

/* Sección de Servicios */
.servicios {
    padding: 100px 5%;
    background-color: #222222;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header span {
    color: var(--primary-color);
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    text-transform: none;
    /* Las fuentes script no lucen bien en mayúsculas */
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #121212;
    padding: 40px;
    border-radius: 15px;
    /* Mismo estilo neón que la imagen de Nosotros */
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    border: 1px solid rgba(255, 204, 0, 0.5);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    /* Brillo intensificado al pasar el mouse */
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.5);
    border: 1px solid var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #262626;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: #000;
}

.service-icon span {
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.duration {
    font-size: 0.8rem;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 0 15px 0 15px;
}

/* Sección de Galería */
.galeria {
    padding: 100px 5%;
    background-color: #121212;
}

.galeria-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.galeria-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-top: 15px;
}

.galeria-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: grayscale(100%);
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.img-large {
    grid-column: span 2;
    grid-row: span 2;
}

.img-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay p {
    transform: translateY(0);
}

/* Sección de Testimonios */
.testimonios {
    padding: 120px 5%;
    background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.6)), url('../../images/fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Degradado de conexión superior (con Galería) */
.testimonios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #121212, transparent);
    z-index: 1;
}

/* Degradado de conexión inferior (con Contacto) */
.testimonios::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #222222, transparent);
    z-index: 1;
}

/* Asegurar que el contenido esté sobre los degradados */
.testimonios .section-header,
.testimonios-grid,
.testimonios .btn {
    position: relative;
    z-index: 2;
}

.testimonios-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background-color: rgba(18, 18, 18, 0.4);
    /* Más transparente */
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    /* Mismo estilo neón */
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    border: 1px solid rgba(255, 204, 0, 0.5);
    position: relative;
    transition: var(--transition);
}

.testimonio-card:hover {
    transform: translateY(-10px);
    background-color: rgba(18, 18, 18, 0.7);
    /* Brillo intensificado al pasar el mouse */
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.5);
    border-color: var(--primary-color);
}

.testimonio-card:hover .quote-icon {
    color: var(--primary-color);
    opacity: 0.3;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 204, 0, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.client-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--primary-color);
    display: flex;
    gap: 2px;
}

.stars span {
    font-size: 2rem;
}

.testimonio-text {
    color: #aaa;
    font-style: italic;
    line-height: 1.8;
}

.testimonios .text-muted {
    color: #eee;
    /* Texto más claro para mejor legibilidad sobre el fondo */
}

/* Sección de Contacto */
.contacto {
    padding: 100px 5%;
    background-color: #222222;
}

.contacto-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacto-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(255, 204, 0, 0.1);
    position: relative;
    z-index: 1;
}

.contacto-content span {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.contacto-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
}

.contacto-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background-color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.contacto-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.horarios-list {
    list-style: none;
    font-size: 0.9rem;
    color: #aaa;
}

.horarios-list li {
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin-bottom: 5px;
}

.horarios-list strong {
    color: #fff;
}

.contacto-details p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contacto-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    transition: var(--transition);
}

.contacto-link:hover {
    text-decoration: underline;
}

.redes-sociales {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

.contacto-mapa {
    background-color: #262626;
    position: relative;
    min-height: 400px;
}

.contacto-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


.mapa-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Estilos del Footer */
footer {
    background-color: #000;
    padding: 50px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Estilos del Modal de Testimonios */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 204, 0, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: #262626;
    border: 1px solid #444;
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

.rating-select {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-star {
    cursor: pointer;
    font-size: 24px;
    color: #444;
    transition: var(--transition);
}

.rating-star.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}


/* Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
}

.nosotros-text p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ==========================================================================
   DISEÑO RESPONSIVO (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .nosotros-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        height: 80px;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: transparent;
        backdrop-filter: blur(10px);
        transition: 0.4s;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    nav ul li {
        margin-left: 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .nosotros-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nosotros-subtitle {
        justify-content: center;
    }

    .nosotros-img::before {
        display: none;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 15px;
    }

    .experience-badge span {
        font-size: 1.8rem;
    }

    .galeria-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }

    .img-large,
    .img-wide {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }

    .galeria-item {
        height: 250px;
    }

    .contacto-card {
        grid-template-columns: 1fr;
    }

    .contacto-mapa {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nosotros-text h2,
    .section-header h2,
    .galeria-header h2 {
        font-size: 2.2rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr !important;
    }

    .img-large,
    .img-wide {
        grid-column: span 1 !important;
    }


    .contacto-content {
        padding: 40px 20px;
    }

    .horarios-list li {
        width: 100%;
    }
}