        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1c1c1c;
            scroll-behavior: smooth;
        }









/* HEADER FIJO Y ELEGANTE */
header {
    background-color: #218f8e;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: #1D2E47;
}

.btn-ws-nav {
    color: #075E54;
    background-color: #25D366;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
}

.btn-ws-nav:hover {
    background-color: #075E54;
    color: white;
}

.btn-ws-nav2 {
    color: #f3f3f3;
    background-color: #1D2E47;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
}

.btn-ws-nav2:hover {
    background-color: #f3f3f3;
    color: #1D2E47;
}

/* Responsive - MÓVIL: todo centrado */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 1.5rem;
    }
    
    .header-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .logo img {
        height: 40px;
        margin: 0 auto;
    }
    
    nav ul {
        justify-content: center;
        gap: 1.2rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .btn-ws-nav {
        padding: 0.4rem 1rem;
    }
}








/* HERO CON IMAGEN DE FONDO */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    min-height: 600px;   /* ← Altura mínima garantizada */
    padding: 9rem 2rem;
}

/* Overlay oscuro para legibilidad */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,48,65,0.85) 0%, rgba(15,31,42,0.9) 100%);
    z-index: 0;
}

.hero h2,
.hero p,
.hero .btn-hero {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h2 span {
    color: #218f8e;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.btn-hero {
    background-color: #218f8e;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem;
    display: inline-block;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.btn-hero-outline {
    background-color: transparent;
    border: 2px solid #218f8e;
}

.btn-hero-outline:hover {
    background-color: #218f8e;
}

.btn-hero:hover {
    background-color: #1a7574;
    transform: translateY(-3px);
}









/* SECCIÓN LAVANDERÍA - CARRUSEL (FONDO COMPLETO #218F8E) */
.section-lavanderia {
    background-color: #218f8e;  /* ← Fondo completo de extremo a extremo */
    padding: 3rem 0;  /* ← Padding arriba y abajo */
    margin: 0;
}

/* Contenedor interno centrado a 1400px */
.contenedor-lavanderia {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Títulos en blanco */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: white;
    margin: 0.6rem auto 0;
    border-radius: 10px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 2rem;
}

.carousel-lav-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-lav-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-lav-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Tarjetas */
.carousel-lav-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-sizing: border-box;
    border: 1px solid rgba(33,143,142,0.15);
    min-height: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Separación usando margin-right */
.carousel-lav-card:not(:last-child) {
    margin-right: 1.5rem;
}

.carousel-lav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-lav-card h3 {
    font-size: 1.3rem;
    color: #218f8e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-descripcion {
    font-size: 0.9rem;
    color: #1c1c1c;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-tiempo {
    font-size: 0.85rem;
    color: #1b3041;
    font-weight: 600;
    background: #f3f3f3;
    padding: 0.6rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

/* Botones del carrusel */
.carousel-lav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #218f8e;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-lav-btn:hover {
    background: #1b3041;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: -22px;
}

.next {
    right: -22px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 10px;
}

/* Botón ver todos */
.carousel-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #218f8e;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ver-todos span {
    transition: transform 0.3s;
}

.btn-ver-todos:hover {
    background: #1b3041;
    color: white;
    transform: translateY(-2px);
}

.btn-ver-todos:hover span {
    transform: translateX(4px);
}

/* Tablet: mostrar 2 tarjetas */
@media (min-width: 768px) {
    .carousel-lav-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Desktop: mostrar 3 tarjetas */
@media (min-width: 1024px) {
    .carousel-lav-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Móvil */
@media (max-width: 767px) {
    .contenedor-lavanderia {
        padding: 0 1rem;
    }
    
    .section-lavanderia {
        padding: 2rem 0;
    }
    
    .carousel-lav-card:not(:last-child) {
        margin-right: 1rem;
    }
    
    .prev {
        left: -10px;
    }
    
    .next {
        right: -10px;
    }
    
    .carousel-lav-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .carousel-lav-card {
        padding: 1.5rem;
    }
    
    .carousel-lav-card h3 {
        font-size: 1.1rem;
    }
}









/* SECTION DETAILING - CON FOTO DE FONDO */
.section-detailing {
    position: relative;
    background-image: url('/img/detailing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 3rem;
}

/* Overlay oscuro para que el texto resalte */
.detailing-overlay {
    background: rgba(27, 48, 65, 0.85); /* #1B3041 con opacidad */
    padding: 5rem 2rem;
    backdrop-filter: blur(3px);
}

.detailing-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.detailing-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.detailing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.detailing-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #218f8e;
    margin: 0.8rem auto 0;
    border-radius: 10px;
}

.detailing-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.detailing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.feature:hover {
    background: #218f8e;
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.2rem;
}

.detailing-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-detailing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #218f8e;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detailing:hover {
    background: white;
    color: #218f8e;
    transform: translateY(-3px);
}

.btn-detailing:hover span {
    transform: translateX(4px);
}

.btn-detailing span {
    transition: transform 0.3s;
}

.btn-detailing-ws {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detailing-ws:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.detailing-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .detailing-overlay {
        padding: 3rem 1.5rem;
    }
    
    .detailing-title {
        font-size: 1.8rem;
    }
    
    .detailing-subtitle {
        font-size: 1rem;
    }
    
    .detailing-features {
        gap: 0.8rem;
    }
    
    .feature {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-detailing,
    .btn-detailing-ws {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .detailing-icon {
        font-size: 3rem;
    }
}








/* SECCIÓN MAPAS + WHATSAPP CENTRAL */
.section-mapas {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 48px;
}

.mapas-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1b3041;
    margin-bottom: 2rem;
}

.mapas-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #218f8e;
    margin: 0.6rem auto 0;
    border-radius: 10px;
}

.mapas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Tarjetas de mapa y WhatsApp - MISMA ALTURA */
.mapa-card,
.whatsapp-central {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(33,143,142,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mapa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(33,143,142,0.15);
}

.mapa-header {
    margin-bottom: 1rem;
}

.mapa-badge {
    background: #218f8e10;
    color: #218f8e;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.mapa-card h3 {
    font-size: 1.2rem;
    color: #1b3041;
    margin-bottom: 0.2rem;
}

.mapa-card p {
    font-size: 0.85rem;
    color: #5a6e7a;
}

/* WHATSAPP CENTRAL - FONDO VERDE, TODO BLANCO */
.whatsapp-central {
    background: #25D366;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white; /* Hereda el color blanco */
}

.whatsapp-central:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(37,211,102,0.25);
}

.ws-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.ws-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 1.5s infinite;
}

.ws-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    transition: transform 0.2s;
    z-index: 2;
}

.ws-button:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ws-text {
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    line-height: 1.3;
}

.whatsapp-central small {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 900px) {
    .mapas-container {
        flex-direction: column;
    }
    
    .mapa-card,
    .whatsapp-central {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .section-mapas {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .mapas-title {
        font-size: 1.4rem;
    }
}
        







        /* DETALLING SECCIÓN */
        .bg-light {
            background-color: #ffffff;
        }








/* SECCIÓN DE RESEÑAS */
.section-reseñas {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 48px;
}

.reseñas-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1b3041;
    margin-bottom: 2rem;
}

.reseñas-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #218f8e;
    margin: 0.6rem auto 0;
    border-radius: 10px;
}

.reseñas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.google-card,
.reviews-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.google-card:hover,
.reviews-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(33,143,142,0.15);
}

/* Tarjeta de Google */
.google-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.google-logo {
    width: 40px;
    height: 40px;
}

.google-header h3 {
    font-size: 1.3rem;
    color: #1b3041;
    margin: 0;
}

.google-rating {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 2rem;
    letter-spacing: 4px;
    color: #FFB800;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1b3041;
    margin-right: 8px;
}

.rating-total {
    font-size: 0.85rem;
    color: #8d8d8d;
}

.google-review-text {
    font-style: italic;
    color: #1c1c1c;
    padding: 1rem;
    background: #ffffff;
    border-radius: 20px;
    margin: 1rem 0;
    font-size: 0.95rem;
    text-align: center;
}

.google-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-review,
.btn-write-review {
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-review {
    background: #218f8e20;
    color: #218f8e;
    border: 1px solid #218f8e40;
}

.btn-review:hover {
    background: #218f8e;
    color: white;
    transform: scale(1.02);
}

.btn-write-review {
    background: #4284F3;
    color: white;
}

.btn-write-review:hover {
    background: #2a5fbd;
    transform: scale(1.02);
}

/* Tarjeta de reseñas destacadas */
.reviews-card h3 {
    color: #1b3041;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #218f8e;
    padding-left: 12px;
}

.review-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.review-item:last-child {
    border-bottom: none;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.reviewer-icon {
    font-size: 1.5rem;
}

.reviewer-stars {
    color: #FFB800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-item p {
    font-size: 0.9rem;
    color: #5a6e7a;
    line-height: 1.4;
    margin-left: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-reseñas {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .reseñas-title {
        font-size: 1.4rem;
    }
    
    .google-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-review,
    .btn-write-review {
        justify-content: center;
    }
    
    .review-item p {
        margin-left: 0;
        margin-top: 6px;
    }
    
    .reviewer {
        flex-wrap: wrap;
    }
}








/* SECCIÓN CONTACTO WHATSAPP */
.section-contacto {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contacto-ws {
    background: #1B3041;
    border-radius: 48px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Imagen de fondo con opacidad 80% */
.contacto-ws::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/contact.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

/* Contenido por encima del fondo */
.contacto-contenido {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Lado izquierdo - Botón */
.contacto-izquierda {
    flex: 1;
    min-width: 200px;
}

.btn-ws-grande {
    background-color: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-ws-grande:hover {
    background-color: #128C7E;
    transform: scale(1.02);
}

/* Lado derecho - Información */
.contacto-derecha {
    flex: 2;
    min-width: 250px;
    text-align: right;
}

.contacto-derecha h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contacto-derecha p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.contacto-derecha small {
    font-size: 0.85rem;
    color: #218f8e;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-contenido {
        flex-direction: column;
        text-align: center;
    }
    
    .contacto-derecha {
        text-align: center;
    }
    
    .contacto-ws {
        padding: 2rem;
    }
    
    .contacto-derecha h3 {
        font-size: 1.4rem;
    }
}








/* FOOTER - 3 COLUMNAS (SEDES EN 2 COLUMNAS INTERNAS) */
footer {
    background-color: #1b3041;
    color: #f3f3f3;
    padding: 2rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.2fr;  /* Sedes más ancha */
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: #218f8e;
    font-size: 1.1rem;  /* Ligeramente más grande */
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Línea decorativa debajo de cada título */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #218f8e;
    border-radius: 2px;
}

.footer-col p, .footer-col li {
    color: #e2e8f0;
    line-height: 1.4;
    font-size: 0.8rem;
    margin: 0.3rem 0;
}

.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #218f8e;
}

.sedes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;  /* Más espacio entre columnas */
}

.sedes-list li {
    margin-bottom: 1rem;  /* Más espacio entre sedes */
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sedes-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sedes-list strong {
    color: #218f8e;
    font-size: 0.8rem;  /* Un poco más grande */
    display: block;
    margin-bottom: 0.2rem;
}

.sedes-list p {
    margin: 0.2rem 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.map-link {
    display: inline-block;
    font-size: 0.7rem;
    color: #218f8e;
    text-decoration: none;
    margin-top: 0.3rem;
    transition: all 0.3s;
}

.map-link:hover {
    color: white;
    transform: translateX(3px);
}

/* Contacto */
.footer-col p {
    margin: 0.5rem 0;
}

.footer-col p a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Horarios */
.horarios {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.horarios h5 {
    color: #218f8e;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.horarios p {
    font-size: 0.75rem;
    margin: 0.3rem 0;
}

.domingo {
    color: #e74c3c;
    font-weight: 500;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.7rem;
}

.copyright a {
    color: #218f8e;
    text-decoration: none;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }
    
    /* En tablet, que la columna de Sedes ocupe toda la fila */
    .sedes-col {
        grid-column: span 2;
    }
    
    .sedes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 1.5rem 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sedes-col {
        grid-column: span 1;
    }
    
    .sedes-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}











/* HEADER DE LA PÁGINA */
.detailing-header {
    background: linear-gradient(135deg, #1b3041 0%, #0f1f2a 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.detailing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.detailing-header h1 span {
    color: #218f8e;
}

.detailing-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CONTENEDOR PRINCIPAL */
.detailing-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* GRID DE TARJETAS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

/* TARJETA FLOTANTE */
.service-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(33,143,142,0.15);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(33,143,142,0.15);
}

/* TÍTULOS */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #218f8e;
    margin-bottom: 0.5rem;
    border-left: 4px solid #218f8e;
    padding-left: 1rem;
}

/* BADGE DE INCLUYE */
.price-badge {
    background: #1b3041;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin: 0.5rem 0 1rem;
    font-size: 0.8rem;
}

/* LISTA DE SERVICIOS */
.service-list {
    list-style: none;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #2c3e50;
}

.service-list li:last-child {
    border-bottom: none;
}

/* FILA DE PRECIOS */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: #1b3041;
    font-size: 0.9rem;
}

.price-value {
    font-weight: 800;
    color: #218f8e;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .detailing-container {
        padding: 0 1.5rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .detailing-header {
        padding: 2rem 1rem;
    }
    
    .detailing-header h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .price-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .detailing-container {
        padding: 0 1rem 1.5rem;
    }
}

.logo-detailing {
    height: 120px;
    width: auto;
    display: inline-block;
}

/* Si quieres que el logo tenga un tamaño diferente en móvil */
@media (max-width: 768px) {
    .logo-detailing {
        height: 100px;
    }
}









/* HEADER DE LA PÁGINA */
.lavanderia-header {
    background: linear-gradient(135deg, #1b3041 0%, #0f1f2a 100%);
    color: white;
    text-align: center;
    padding: 2rem 2rem;
    margin-bottom: 2rem;
}

.lavanderia-logo {
    margin-bottom: 0.5rem;
}

.logo-lavanderia {
    height: 70px;
    width: auto;
    display: inline-block;
}

.lavanderia-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* CONTENEDOR PRINCIPAL */
.lavanderia-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* MASONRY - SIN ESPACIOS EN BLANCO (columnas como Pinterest) */
@media (min-width: 901px) {
    .lavanderia-grid {
        column-count: 3;
        column-gap: 2rem;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .lavanderia-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .lavanderia-grid {
        column-count: 1;
        column-gap: 0;
    }
}

/* TARJETA BASE */
.lavanderia-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    break-inside: avoid;
    margin-bottom: 2rem;
    display: inline-block;
    width: 100%;
}

.lavanderia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(0,0,0,0.12);
}

/* ========== COLORES PASTEL POR TARJETA ========== */

/* Lavado al Peso - Verde Menta */
.lavanderia-card:nth-child(1) {
    background: #f0f9f4;
    border: 1px solid #c8e6d9;
}
.lavanderia-card:nth-child(1) .card-title {
    color: #2e8b57;
    border-left-color: #2e8b57;
}
.lavanderia-card:nth-child(1) .price-value {
    color: #2e8b57;
}

/* Planchado - Azul Cielo */
.lavanderia-card:nth-child(2) {
    background: #f0f8ff;
    border: 1px solid #cde0f0;
}
.lavanderia-card:nth-child(2) .card-title {
    color: #4682b4;
    border-left-color: #4682b4;
}
.lavanderia-card:nth-child(2) .price-value {
    color: #4682b4;
}

/* Lavado al Seco - Lavanda */
.lavanderia-card:nth-child(3) {
    background: #f5f0ff;
    border: 1px solid #e0d6f5;
}
.lavanderia-card:nth-child(3) .card-title {
    color: #7b68ee;
    border-left-color: #7b68ee;
}
.lavanderia-card:nth-child(3) .price-value {
    color: #7b68ee;
}

/* Calzado - Durazno */
.lavanderia-card:nth-child(4) {
    background: #fef5f0;
    border: 1px solid #fce4d6;
}
.lavanderia-card:nth-child(4) .card-title {
    color: #e67e22;
    border-left-color: #e67e22;
}
.lavanderia-card:nth-child(4) .price-value {
    color: #e67e22;
}

/* Colchones - Rosa Pastel */
.lavanderia-card:nth-child(5) {
    background: #fef0f5;
    border: 1px solid #fad5e5;
}
.lavanderia-card:nth-child(5) .card-title {
    color: #db7093;
    border-left-color: #db7093;
}
.lavanderia-card:nth-child(5) .price-value {
    color: #db7093;
}

/* Hogar - Amarillo Suave */
.lavanderia-card:nth-child(6) {
    background: #fffdf0;
    border: 1px solid #fff0b5;
}
.lavanderia-card:nth-child(6) .card-title {
    color: #d4a017;
    border-left-color: #d4a017;
}
.lavanderia-card:nth-child(6) .price-value {
    color: #d4a017;
}

/* Prendas Especiales - Coral Claro */
.lavanderia-card:nth-child(7) {
    background: #fef4f2;
    border: 1px solid #fde2dc;
}
.lavanderia-card:nth-child(7) .card-title {
    color: #e97451;
    border-left-color: #e97451;
}
.lavanderia-card:nth-child(7) .price-value {
    color: #e97451;
}

/* Otros - Gris Perla */
.lavanderia-card:nth-child(8) {
    background: #f5f7fa;
    border: 1px solid #e2e8f0;
}
.lavanderia-card:nth-child(8) .card-title {
    color: #5c6b7a;
    border-left-color: #5c6b7a;
}
.lavanderia-card:nth-child(8) .price-value {
    color: #5c6b7a;
}

/* TÍTULOS */
.lavanderia-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border-left: 4px solid;
    padding-left: 1rem;
}

/* BADGE DE INCLUYE */
.lavanderia-card .price-badge {
    background: rgba(0,0,0,0.08);
    color: #1b3041;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin: 0.5rem 0 1rem;
    font-size: 0.75rem;
}

/* LISTA DE SERVICIOS */
.lavanderia-card .service-list {
    list-style: none;
    margin: 1rem 0;
}

.lavanderia-card .service-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #2c3e50;
}

.lavanderia-card .service-list li:last-child {
    border-bottom: none;
}

/* FILA DE PRECIOS */
.lavanderia-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.6rem 0;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lavanderia-card .price-row:last-child {
    border-bottom: none;
}

.lavanderia-card .price-label {
    font-weight: 600;
    color: #1b3041;
    font-size: 0.85rem;
}

.lavanderia-card .price-value {
    font-weight: 800;
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lavanderia-header {
        padding: 1.5rem 1rem;
    }
    
    .logo-lavanderia {
        height: 50px;
    }
    
    .lavanderia-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .lavanderia-card .price-label {
        font-size: 0.8rem;
    }
    
    .lavanderia-card .price-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .lavanderia-container {
        padding: 0 1rem 1.5rem;
    }
}









/* ========== REDES SOCIALES SECTION ========== */
.social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.container-social {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header */
.section-header-social {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag-social {
    display: inline-block;
    background: #1e2b3c;
    color: #e37321;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-social {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 0.75rem;
}

.section-title-social span {
    color: #e37321;
}

.section-subtitle-social {
    color: #5a6e7a;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Grid de tarjetas */
.social-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tarjetas flotantes */
.social-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

/* Icono grande */
.social-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.5rem;
}

/* Colores por tarjeta */
.lavanderia-card {
    border-top: 5px solid #02A19C;
}
.lavanderia-card .social-icon-large {
    background: rgba(2, 161, 156, 0.1);
    color: #02A19C;
}
.lavanderia-card h3 {
    color: #02A19C;
}

.detailing-card {
    border-top: 5px solid #ff9933;
}
.detailing-card .social-icon-large {
    background: rgba(255, 153, 51, 0.1);
    color: #ff9933;
}
.detailing-card h3 {
    color: #ff9933;
}

.social-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.social-card p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Botones sociales */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: scale(1.02);
}

.tiktok-btn {
    background: #000000;
    color: white;
}

.tiktok-btn:hover {
    background: #1a1a1a;
    transform: scale(1.02);
}

/* Footer de cada tarjeta */
.social-footer-note {
    font-size: 0.8rem;
    color: #6c7a8a;
    border-top: 1px solid #eef2f6;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.social-footer-note i {
    margin-right: 0.3rem;
}

/* Mensaje final */
.social-message {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: #fef2e8;
    border-radius: 60px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #1e2b3c;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-message i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .social-section {
        padding: 3rem 0;
    }
    
    .section-title-social {
        font-size: 1.8rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
    }
    
    .social-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .social-message {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}