/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3aacee;
    --primary-dark: #ec2f9d;
    --secondary-color: #f8f9fa;
    --accent-color: #5fe7ff;
    --text-dark: #333;
    --text-light: #777;
    --white: #fff;
    --gray-light: #f5f5f5;
    --border-color: #eaeaea;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-hero {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-hero:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px; /* Ajusta esta altura según necesites */
    width: auto; /* Mantiene la proporción de la imagen */
    margin-right: 10px; /* Espacio entre el logo y el texto */
}

/* Si quieres que el logo y el texto estén alineados verticalmente */
.logo {
    display: flex;
    align-items: center;
}

/* Si quieres que el logo sea clickeable para ir al inicio, puedes envolverlo en un enlace */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero y Carrusel */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-top: 70px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-btn-prev {
    left: 30px;
}

.carousel-btn-next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Servicios */
.servicios {
    background-color: var(--gray-light);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servicio-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.servicio-card:hover {
    transform: translateY(-10px);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 109, 187, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.servicio-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.servicio-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.servicio-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.servicio-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.servicio-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.servicio-link:hover i {
    transform: translateX(5px);
}

/* Nosotros */
.nosotros-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.nosotros-text .section-title {
    margin-bottom: 20px;
}

.nosotros-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.nosotros-list {
    list-style: none;
    margin-top: 20px;
}

.nosotros-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.nosotros-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.nosotros-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.nosotros-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.nosotros-image:hover img {
    transform: scale(1.05);
}

/* Sucursales */
.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Estilos para la card de sucursal */

/* Contenedor principal */
.card-sucursal {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

/* Efecto hover para toda la card */
.card-sucursal:hover {
    transform: translateY(-5px);
}

/* Título de la sucursal */
.titulo-sucursal {
    color: #2c3e50;
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
    font-weight: 700;
}

/* Cada item de información */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Íconos de información */
.icono {
    color: #3498db;
    font-size: 1.2em;
    margin-right: 15px;
    min-width: 20px;
    text-align: center;
    margin-top: 2px;
}

/* Texto de la información */
.texto-info {
    color: #495057;
    line-height: 1.5;
    font-size: 1em;
}

/* Sección de redes sociales */
.redes-sociales {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Título de redes sociales */
.titulo-redes {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

/* Contenedor de íconos de redes */
.iconos-redes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Estilos para cada enlace de red social */
.red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.3em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Efecto hover para redes sociales */
.red-social:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Colores específicos para cada red social */
.facebook {
    background-color: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
}

.tiktok {
    background-color: #25bd32;
}

/* Estilos responsivos */
@media (max-width: 480px) {
    .card-sucursal {
        padding: 20px;
        margin: 15px;
    }
    
    .titulo-sucursal {
        font-size: 1.4em;
    }
    
    .iconos-redes {
        gap: 15px;
    }
}

/* Aqui se modifico la clase para que las imagenes se ajusten al contenedor*/
.sucursal-image {
    width: 100%;
    max-height: 400px; /* Altura máxima */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sucursal-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain; /* Muestra toda la imagen sin recortar */
}

.sucursal-card:hover .sucursal-image img {
    transform: scale(1.05);
}

.sucursal-info {
    padding: 25px;
}

.sucursal-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.sucursal-address,
.sucursal-hours,
.sucursal-phone {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--text-light);
}

.sucursal-address i,
.sucursal-hours i,
.sucursal-phone i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Contacto */
.contacto {
    background-color: var(--gray-light);
}

.contacto-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contacto-description {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contacto-details {
    margin-top: 30px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contacto-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contacto-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contacto-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #DE3289;
    color: #bbb;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-schedule {
    list-style: none;
    margin-bottom: 20px;
}

.footer-schedule li {
    margin-bottom: 10px;
}

.footer-email {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .slide-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        background-color: var(--white);
        border-radius: 10px;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-link {
        margin: 10px 0;
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-btn-prev {
        left: 15px;
    }
    
    .carousel-btn-next {
        right: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contacto-form {
        padding: 30px 20px;
    }
}

/* Sección Promociones */
.promociones {
    background-color: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.promociones::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%231a6dbb" fill-opacity="0.03" d="M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z M50,10 C27.909,10 10,27.909 10,50 C10,72.091 27.909,90 50,90 C72.091,90 90,72.091 90,50 C90,27.909 72.091,10 50,10 Z"></path></svg>');
    background-size: 120px;
    opacity: 0.5;
}

.promociones .container {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 126, 95, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.promo-card.promo-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.promo-card.promo-featured .promo-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.promo-header {
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    padding: 25px 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.promo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-content {
    padding: 25px;
    flex-grow: 1;
}

.promo-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eaeaea;
}

.price-old {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-new {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-save {
    display: inline-block;
    background-color: rgba(26, 109, 187, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-list {
    list-style: none;
    margin-bottom: 25px;
}

.promo-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.promo-list i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 0.9rem;
}

.promo-validity {
    background-color: #fff8e1;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ff9800;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.promo-validity i {
    margin-right: 10px;
    font-size: 1rem;
}

.promo-footer {
    padding: 20px 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    background-color: #fafafa;
}

.btn-promo {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
}

.btn-promo:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0a4a8a);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 109, 187, 0.3);
}

.promo-share {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: var(--transition);
}

.promo-share:hover {
    background-color: var(--primary-color);
    color: white;
}

.promo-notice {
    background-color: #e8f4ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.promo-notice i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.promo-notice p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive para promociones */
@media (max-width: 768px) {
    .promociones-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .promo-card.promo-featured {
        transform: none;
    }
    
    .price-new {
        font-size: 1.8rem;
    }
}
/*este responsive se AGREGO para los ajustes de cada imagen al contenedor en la clase*/

@media (max-width: 768px) {
    .sucursal-image {
        height: 150px; /* Más pequeña en móvil */
    }
    
    .sucursal-image img {
        object-fit: cover; /* o contain según prefieras */
    }
}

.location-link {
    text-decoration: none; /* Esto quita la línea de debajo */
    color: inherit;        /* Esto hace que el texto mantenga el color original y no se ponga azul */
    display: flex;         /* Opcional: ayuda a alinear el icono con el texto */
    align-items: center;
}

.location-link:hover {
    text-decoration: none; /* Asegura que no aparezca ni al pasar el mouse */
}