/* Botón de enviar mensaje personalizado */
.contact-form .btn.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, #c19557 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 2px rgba(44,44,44,0.08);
    padding: 0.5rem 1.3rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.10);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    letter-spacing: 0.02em;
    margin: 0 auto;
    display: block;
}

.contact-form .btn.btn-primary:hover,
.contact-form .btn.btn-primary:focus {
    background: linear-gradient(90deg, #c19557 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.18);
    outline: none;
}

@media (max-width: 600px) {
    .contact-form .btn.btn-primary {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        width: 100%;
        border-radius: 14px;
    }
}
/* Reset y variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #f8f8f8;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Tipografías */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Estilos base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff;
    color: var(--text-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}


.nav-menu li a {
    text-decoration: none;
    color: #333; /* Color del texto */
    font-family: 'Inter', sans-serif; /* Fuente moderna y minimalista */
    font-size: 0.95rem; /* Tamaño de letra más pequeño */
    font-weight: 500; /* Peso medio para un diseño limpio */
    letter-spacing: 0.02rem; /* Espaciado sutil */
    position: relative; /* Necesario para el efecto de hover */
    transition: color 0.3s ease; /* Transición suave para el color */
}

.nav-menu li a:hover {
    color: #d4a574; /* Color de hover */
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Línea justo debajo del texto */
    width: 0;
    height: 2px;
    background: #d4a574; /* Color de la línea */
    transition: width 0.3s ease; /* Animación de la línea */
}

.nav-menu li a:hover::after {
    width: 100%; /* Línea completa al hacer hover */
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
}

.nav-actions .btn-whatsapp {
    display: none;
}

.nav-actions .btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
}

.nav-actions .btn:hover {
    background: #f1f1f1;
    border-color: #ccc;
}

.nav-actions .btn-call {
    background: var(--primary-color);
    color: var(--white);
}

.nav-actions .btn-call:hover {
    background: #c19557;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.35rem 0.75rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0));
    display: none;
    z-index: 1200;
}

.bottom-nav__list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.bottom-nav__item {
    flex: 1;
}

.bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0;
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bottom-nav__link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.bottom-nav__item--active .bottom-nav__link,
.bottom-nav__link:focus,
.bottom-nav__link:hover {
    color: var(--primary-color);
}

.bottom-nav__item--active .bottom-nav__link i,
.bottom-nav__link:focus i,
.bottom-nav__link:hover i {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
    }

    .nav-actions .btn-whatsapp {
        display: none;
    }

    .nav-actions .btn-call {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .nav-actions .btn-call svg {
        width: 18px;
        height: 18px;
    }

    body {
        padding-bottom: 90px;
    }

    .bottom-nav {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    z-index: 2;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: -1.5rem; /* Ajusta este valor para subir el texto */
}

.hero-title span {
    color: var(--primary-color);
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-top: 4.5rem; /* Ajusta este valor para bajar el texto */
    max-width: 600px;
    line-height: 1.6;
    color: #222;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--text-color);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-buttons .btn:hover {
    background: #f1f1f1;
    border-color: #ccc;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    transform: scale(1.05);
    transition: filter 0.6s ease;
}

@media (max-width: 600px) {
    .hero-image img {
        object-position: 15% center !important;
        filter: blur(0px) !important;
    }
    .hero-overlay {
        background: rgba(255, 255, 255, 0.45) !important;
    }
}

/* Secciones generales */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Servicios */
.services {
    background: var(--white);
}

.service-category {
    margin-bottom: 3rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card h3,
.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card h4 {
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Tarjetas expandibles */
.service-card[data-expandable] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card[data-expandable]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-expand-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid #C9A88A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A88A;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.service-card[data-expandable].expanded .service-expand-icon {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: rotate(45deg);
}

.service-card[data-expandable] .service-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.service-card[data-expandable].expanded .service-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

/* Sobre Nosotros */
.about {
    background: var(--accent-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.feature span {
    font-weight: 500;
    color: var(--text-color);
}

.about-image {
    height: clamp(260px, 45vw, 400px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-image .placeholder-text {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 20px;
}

/* Galería */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    border-radius: var(--border-radius);
}

/* Preguntas frecuentes */
.faq {
    background: var(--accent-color);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 15px 45px rgba(44, 44, 44, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:focus-within,
.faq-item:hover {
    border-color: rgba(212, 165, 116, 0.45);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.12);
    transform: translateY(-2px);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus {
    outline: none;
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(212, 165, 116, 0.6);
    border-radius: 12px;
    outline-offset: 4px;
}

.faq-question {
    flex: 1;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
}

.faq-item[open] .faq-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item[open] .faq-icon::after {
    transform: scaleY(0);
    background: var(--white);
}

.faq-item[open] .faq-icon::before {
    background: var(--white);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p + p {
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .faq-grid {
        gap: 1.1rem;
    }

    .faq-item {
        padding: 1.25rem 1.4rem;
    }

    .faq-item summary {
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .faq-grid {
        gap: 0.9rem;
    }

    .faq-item {
        padding: 1rem 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Galería del salón */
.salon-gallery {
    background: var(--accent-color);
}

.salon-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    --salon-slide-offset: 0px;
}

.salon-slider__track {
    position: relative;
    flex: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: clamp(260px, 55vw, 480px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.salon-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    --salon-slide-scale: 1.02;
    transform: translateX(var(--salon-slide-offset)) scale(var(--salon-slide-scale));
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

.salon-slide.is-active {
    opacity: 1;
    --salon-slide-scale: 1;
    pointer-events: auto;
}

.salon-slider:not(.is-initialized) .salon-slide:first-child {
    position: relative;
    opacity: 1;
    --salon-slide-scale: 1;
    pointer-events: auto;
}

.salon-slide__media {
    position: relative;
    flex: 1;
}

.salon-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: var(--white);
}

.salon-slide__media .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.salon-slide figcaption {
    display: none;
}

.salon-slider__control {
    border: none;
    background: rgba(255, 255, 255, 0.85);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 2;
}

.salon-slider__control:hover,
.salon-slider__control:focus-visible {
    background: var(--primary-color);
    color: var(--white);
    outline: none;
}

.salon-slider__control--prev {
    position: absolute;
    left: 20px;
}

.salon-slider__control--next {
    position: absolute;
    right: 20px;
}

.salon-slider__control--prev,
.salon-slider__control--next {
    top: 50%;
    transform: translateY(-50%);
}

.salon-slider__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.salon-slider.is-dragging .salon-slider__track {
    cursor: grabbing;
}

.salon-slider.is-dragging .salon-slide {
    transition: none;
}

.salon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.salon-dot.is-active,
.salon-dot:hover,
.salon-dot:focus-visible {
    background: var(--primary-color);
    border-color: var(--primary-color);
    outline: none;
}

@media (max-width: 992px) {
    .salon-slider {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .salon-slider__track {
        flex: none;
    }

    .salon-slider__control {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .salon-slider__control--prev {
        left: 12px;
    }

    .salon-slider__control--next {
        right: 12px;
    }

    .salon-slider__dots {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .salon-slider__track {
        aspect-ratio: 4 / 5;
        min-height: 360px;
        flex: none;
    }

    .salon-slider__control {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .salon-slider__control--prev {
        left: 10px;
    }

    .salon-slider__control--next {
        right: 10px;
    }

    .salon-slide figcaption {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .salon-slider__dots {
        margin-top: 1.5rem;
    }
}

.instagram-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f1eb 100%);
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.instagram-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.instagram-copy h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.instagram-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.15);
    transition: transform 0.3s ease;
}

.instagram-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.instagram-copy p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c19557 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.instagram-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.instagram-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.instagram-button:hover::before {
    left: 100%;
}

.instagram-button--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c19557 100%);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(212, 165, 116, 0.4);
}

.instagram-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(212, 165, 116, 0.5);
    background: linear-gradient(135deg, #c19557 0%, var(--primary-color) 100%);
}

.instagram-button--ghost {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
}

.instagram-button--ghost:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 165, 116, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.instagram-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 44, 44, 0.15);
    background: linear-gradient(140deg, rgba(212, 165, 116, 0.1), rgba(193, 149, 87, 0.1));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(212, 165, 116, 0.1);
}

.instagram-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(44, 44, 44, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05);
}

.instagram-card__placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #c19557);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1rem;
}

.instagram-card__icon {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.9);
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.25);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(44, 44, 44, 0.25);
    border-color: var(--primary-color);
}

.instagram-card:hover::after {
    opacity: 1;
}

.instagram-card:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.instagram-card:hover .instagram-card__icon {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(44, 44, 44, 0.3);
}

/* Animación adicional en móviles */
@media (hover: none) {
    .instagram-card:active {
        transform: translateY(-6px);
        transition: transform 0.2s ease;
    }
}

/* Indicador de carga */
.instagram-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--light-text);
    font-family: var(--font-body);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 165, 116, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.instagram-loading p {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos responsive para el logo */
@media (max-width: 768px) {
    .instagram-logo {
        height: 45px;
    }
    
    .instagram-copy h2 {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .instagram-logo {
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .instagram-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .instagram-copy p {
        margin: 0 auto;
    }

    .instagram-actions {
        justify-content: center;
    }

    .instagram-copy h2 {
        font-size: 2.4rem;
    }

    .instagram-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .instagram-copy h2 {
        font-size: 2.2rem;
    }

    .instagram-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .instagram-section {
        padding: 60px 0;
    }

    .instagram-copy h2 {
        font-size: 1.9rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .instagram-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .instagram-button {
        width: 100%;
        padding: 1.1rem 2rem;
    }

    .instagram-card {
        border-radius: 20px;
    }

    .instagram-card__icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Contacto */
.contact {
    background: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.5;
}

.contact-link {
    color: var(--secondary-color);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: var(--primary-color);
}

/* Formulario */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

/* Fix icon rendering artifacts (anti-aliasing / subpixel lines) */
.social-links a i,
.nav-actions .btn-icon i,
.whatsapp-float .whatsapp-icon i,
.footer-section i,
.contact-item i,
.instagram-card__icon i,
.bottom-nav__link i {
    display: inline-block;
    line-height: 1; /* prevent extra gaps */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: translateZ(0); /* promote to its own layer to avoid subpixel blending */
    backface-visibility: hidden;
}

.social-links a:hover {
    background: #c19557;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: auto;
        padding: 0;
        min-height: 100vh;
    }

    .hero-overlay {
        position: absolute;
        background: rgba(255, 255, 255, 0.65);
        padding: 120px 20px 80px;
    }

    .container {
        padding: 0 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        max-width: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text h2,
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .about-text p,
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-card {
        padding: 1rem 0.75rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.75rem;
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
        min-height: 100vh;
    }

    .hero-overlay {
        position: absolute;
        background: rgba(255, 255, 255, 0.10);
        padding: 100px 15px 60px;
    }

    .hero-content {
        background: transparent;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        color: #000000;
    }

    .hero-image img {
        object-position: 45% center;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 0.8rem 1.3rem;
        font-size: 0.95rem;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1rem 3rem 1rem;
    }

    .service-card h4 {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .nav-logo img {
        height: 42px;
    }

    .container {
        padding: 0 15px;
    }

    .salon-slider__track {
        aspect-ratio: 4 / 3;
        min-height: auto;
        height: auto;
    }

    .salon-slide {
        position: absolute;
        inset: 0;
    }

    .salon-slide__media {
        width: 100%;
        height: 100%;
    }

    .salon-slide__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .salon-slider__control {
        width: 38px;
        height: 38px;
    }
}

/* Sección del mapa */
.map-section {
    padding: 40px 0;
    background: #ffffff; /* Fondo blanco para un diseño limpio */
    text-align: center;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #222; /* Color más oscuro para el texto */
    margin-bottom: 8px;
}

.map-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555; /* Color gris suave */
    margin-bottom: 20px;
}

.map-container {
    width: 100%; /* Ocupa todo el ancho */
    height: 400px; /* Altura fija para el mapa */
    border-radius: 0; /* Sin bordes redondeados */
    overflow: hidden;
}

.map-container iframe {
    width: 100%; /* Asegura que el iframe se ajuste al contenedor */
    height: 100%; /* Asegura que el iframe ocupe toda la altura */
    border: none; /* Sin bordes */
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5b 100%);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 30px rgba(12, 40, 20, 0.18), inset 0 -4px 12px rgba(255,255,255,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    z-index: 1400;
    will-change: transform;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(12, 40, 20, 0.22);
}

.whatsapp-float:active {
    transform: translateY(-1px) scale(0.99);
}

.whatsapp-float .whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float .whatsapp-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    color: #fff;
    transform-origin: 50% 50%;
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
}

.whatsapp-float:hover .whatsapp-icon svg {
    transform: rotate(-10deg) scale(1.05);
}

.whatsapp-float .whatsapp-icon i {
    display: inline-block;
    transform-origin: 50% 50%;
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
}

.whatsapp-float:hover .whatsapp-icon i {
    transform: rotate(-10deg) scale(1.05);
}

/* Pulse effect behind the FAB */
.whatsapp-float::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.18) 0%, rgba(37,211,102,0.06) 40%, transparent 60%);
    z-index: -1;
    animation: whatsapp-pulse 2.8s infinite ease-out;
}

@keyframes whatsapp-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    70% { transform: translate(-50%, -50%) scale(1.9); opacity: 0.08; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* Tooltip visible on hover/focus */
.whatsapp-float .visually-hidden {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%);
    background: rgba(44,44,44,0.95);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.whatsapp-float:hover .visually-hidden,
.whatsapp-float:focus .visually-hidden,
.whatsapp-float:focus-visible .visually-hidden {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
    pointer-events: auto;
}

/* Focus styles for keyboard users */
.whatsapp-float:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,211,102,0.14), 0 18px 40px rgba(12,40,20,0.22);
}

/* Helper: visually hidden but available for screen readers when not showing tooltip */
.sr-only,
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px; /* Más arriba para no chocar con la barra inferior */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 100px; /* Más arriba para no chocar con la barra inferior */
        right: 18px;
    }

    .whatsapp-float::before {
        width: 56px;
        height: 56px;
    }
}

.nav-logo img {
    height: 50px; /* Ajusta la altura del logo */
    width: auto; /* Mantén la proporción del logo */
    display: block;
}