/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Loading Screen */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    overflow: hidden;
    background: linear-gradient(135deg, #AD8765 0%, #8B6F47 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo-img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: logoScale 2s ease-in-out infinite;
}

.loader-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    animation: textFadeIn 1.5s ease-out;
}

.loader-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: textFadeIn 1.5s ease-out 0.3s both;
}

.loader-spinner {
    display: flex;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loader Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.3);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent content flash while loading */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero-section,
body.loading .about-section,
body.loading .stats-ribbon,
body.loading .section-separator,
body.loading .services-grid,
body.loading .image-comparison-section,
body.loading .sucursales-section,
body.loading .video-section,
body.loading .formulario-section,
body.loading .testimonials-grid-section,
body.loading .footer-section,
body.loading .whatsapp-float {
    visibility: hidden;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

/* Navigation Bar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

/* Left side - Names */
.nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-right: 30px;
}

.nav-name {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out;
}

.nav-name:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-name:hover {
    color: #AD8765;
}

/* Center - Logo */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    animation: scaleIn 1s ease-out;
}

/* Right side - Texts */
.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-left: 30px;
}

.nav-text {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease-out;
}

.nav-text:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-text:hover {
    color: #AD8765;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    max-width: 250px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
    padding: 2rem;
}

.mobile-nav-item {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 25px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

.mobile-nav-item:hover {
    color: #AD8765;
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    padding: 40px 20px;
    background-color: white;
    margin-bottom: 80px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    animation: fadeInUp 1.2s ease-out;
}

.hero-button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.hero-button {
    background-color: #AD8765;
    color: white;
    border: none;
    padding: 15px 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(173, 135, 101, 0.3);
    animation: scaleIn 1s ease-out 0.5s both;
}

.hero-button:hover {
    background-color: #9a7a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 135, 101, 0.4);
}

.hero-button:active {
    transform: translateY(0);
}

/* About Section */
.about-section {
    background-color: #FBDDD8;
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden;
    padding: 8px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2rem;
}

.woman-container {
    position: relative;
    z-index: 2;
    margin: -40px 0;
}

.woman-image {
    max-width: 70%;
    height: auto;
    transform: translateX(-20px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: fadeInLeft 1.2s ease-out;
}

.text-flower-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
    position: relative;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    text-align: left;
    line-height: 1.2;
    animation: slideInFromTop 1s ease-out 0.3s both;
}

.title-break {
    display: block;
}

.about-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: #555;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.flower-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    justify-content: center;
}

.flower-image {
    max-width: 400px;
    height: auto;
    opacity: 0.6;
    animation: rotateIn 1.5s ease-out 0.8s both;
}

/* Stats Ribbon Section */
.stats-ribbon {
    background-color: #AD8765;
    width: 100%;
    padding: 25px 0;
    margin-top: 120px;
    margin-bottom: 80px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.stat-symbol {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-left: 5px;
    opacity: 0.9;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    animation: fadeInUp 1s ease-out;
}

.main-content p {
    font-size: 1.2rem;
    color: #666;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Section Separator for Services */
.section-separator {
    width: 100%;
    margin: 80px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: black;
    opacity: 0.7;
    border-radius: 2px;
    min-width: 40px;
    max-width: 300px;
    animation: fadeInLeft 1s ease-out;
}

.separator-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #313131;
    margin: 0 20px;
    text-align: center;
    letter-spacing: 1px;
    background: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.separator-break {
    display: block;
}

/* Services Grid Section */
.services-grid {
    width: 100%;
    padding: 50px 0;
    background-color: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 60px;
    animation: fadeInUp 1s ease-out;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: scaleIn 0.8s ease-out;
}

/* Staggered animations for service items */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:hover .icon-image {
    transform: scale(1.1);
}

.icon-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite, scaleIn 1s ease-out 1s both;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
}

/* Before/After Image Comparison Section */
.image-comparison-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 50px 0;
    background: #fff;
}

/* Title Section for Image Comparison */
.comparison-title-section {
    width: 100%;
    max-width: 700px;
    background-color: #AD8765;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 0 32px rgba(0,0,0,0.13);
}

.comparison-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: white;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    max-width: 800px;
}

.image-comparison-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Comparison Labels (ANTES/DESPUÉS) */
.comparison-label {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 4;
    pointer-events: none;
    user-select: none;
}

.comparison-label--before {
    left: 20px;
}

.comparison-label--after {
    right: 20px;
}

/* Treatment Text Below Image */
.comparison-treatment-text {
    width: 100%;
    max-width: 700px;
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 0 0 18px 18px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.comparison-treatment-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Update image wrapper to restore proper border-radius */
.image-comparison-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 5/5;
    max-width: 700px;
    min-width: 280px;
    overflow: hidden;
    border-radius: 0 0 0 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    background: #f5f5f5;
}

.comparison-image--after,
.comparison-image--before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    margin: 0;
    padding: 0;
    display: block;
}

.comparison-image--before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
    margin: 0;
    padding: 0;
    transition: width 0.2s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
    /* Remove any flex or grid that could stretch the image */
    display: block;
}

.comparison-image--before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    /* Fine-tune positioning - adjust these values as needed */
    object-position: center center;
    /* You can also try: object-position: 50% 45%; or transform: translateY(-10px); */
}

.comparison-image--after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: block;
    /* Fine-tune positioning - adjust these values as needed */
    object-position: center center;
    /* You can also try: object-position: 50% 45%; or transform: translateY(-20px); */
}

/* Alternative: If object-position doesn't work well, try these transforms */
/*
.comparison-image--before {
    transform: translateX(0px) translateY(-20px) scale(1.1);
}

.comparison-image--after {
    transform: translateX(0px) translateY(-20px) scale(1.1);
}
*/

.comparison-slider {
    position: absolute;
    top: 0; left: 50%;
    height: 100%;
    width: 0;
    z-index: 3;
    pointer-events: none;
}

.slider-handle {
    position: absolute;
    top: 0; left: -16px;
    width: 32px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::before {
    content: '';
    display: block;
    width: 6px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.10);
}

.slider-handle::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #AD8765;
    box-shadow: 0 2px 8px rgba(173,135,101,0.10);
}

/* Sucursales Section */
.sucursales-section {
    width: 100%;
    background: white;
    padding: 40px 0;
}

.sucursales-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sucursales-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.sucursales-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

.sucursales-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.sucursal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.sucursal-card:nth-child(1) { animation-delay: 0.1s; }
.sucursal-card:nth-child(3) { animation-delay: 0.2s; }
.sucursal-card:nth-child(5) { animation-delay: 0.3s; }

.sucursal-card:hover {
    transform: translateY(-5px);
}

.sucursal-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #AD8765;
    margin: 0 0 30px 0;
    text-align: center;
}

.sucursal-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sucursal-card:hover .sucursal-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.sucursal-schedule {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.schedule-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 10px;
}

.schedule-saturday-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin: 15px 0 10px 0;
}

.schedule-line {
    flex: 1;
    height: 1px;
    background: #333;
    opacity: 0.7;
    border-radius: 1px;
    min-width: 20px;
    max-width: 80px;
}

.schedule-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.schedule-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    margin: 0;
    text-align: center;
}

.schedule-hours {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    margin: 5px 0 0 0;
    text-align: center;
    line-height: 1.4;
}

.schedule-saturday {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.schedule-saturday-hours {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    margin: 5px 0 0 0;
    text-align: center;
    line-height: 1.4;
}

.sucursal-button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.sucursal-button {
    background-color: #AD8765;
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(173, 135, 101, 0.3);
    text-decoration: none;
    display: inline-block;
}

.sucursal-button:hover {
    background-color: #9a7a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 135, 101, 0.4);
    text-decoration: none;
    color: white;
}

.sucursal-button:active {
    transform: translateY(0);
}

.sucursal-separator {
    width: 3px;
    height: 450px;
    background: linear-gradient(to bottom, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
    margin: 0 auto;
    justify-self: center;
}

/* Full Width Video Section */
.video-section {
    width: 100%;
    background: #000;
    padding: 0;
    margin: 0;
}

.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.full-width-video {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

/* Formulario Section */
.formulario-section {
    width: 100%;
    min-height: 400px;
    background-image: url('assets/spa_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 80px 0;
}

.formulario-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/spa_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 1;
}

.formulario-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #AD8765;
    box-shadow: 0 0 10px rgba(173, 135, 101, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-weight: 300;
}

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

.form-button-container {
    margin-top: 10px;
}

.form-submit-button {
    background-color: #AD8765;
    color: white;
    border: none;
    padding: 15px 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(173, 135, 101, 0.3);
    width: 100%;
    max-width: 200px;
}

.form-submit-button:hover {
    background-color: #9a7a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 135, 101, 0.4);
}

.form-submit-button:active {
    transform: translateY(0);
}

/* Checkbox Styling */
.checkbox-group {
    text-align: left;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    gap: 10px;
}

.form-checkbox {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: #AD8765;
}

.form-checkbox:checked + .checkmark {
    background-color: #AD8765;
    border-color: #AD8765;
}

.form-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.4;
}

/* Error Messages */
.error-message {
    display: block;
    color: #e74c3c;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

/* Validation States */
.form-input.invalid,
.form-textarea.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #27ae60;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.2);
}

.checkbox-container.invalid .checkmark {
    border-color: #e74c3c;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    width: 100%;
    background: white;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Header Section - Top Left */
.testimonials-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeInLeft 1s ease-out;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #AD8765;
    margin: 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aqui-text {
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.arrow-right svg {
    transition: transform 0.3s ease;
}

.arrow-right:hover svg {
    transform: translateX(5px);
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #FBDDD8 0%, #F5C2C7 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }
.testimonial-card:nth-child(4) { animation-delay: 0.6s; }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-profile {
    flex-shrink: 0;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: #AD8765;
    width: 100%;
    padding: 50px 0 30px 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-location {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.footer-contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.contact-icon svg {
    transition: transform 0.3s ease;
}

.contact-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    margin: 0;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .about-container {
        gap: 30px;
        padding: 0 1.5rem;
    }
    
    .woman-image {
        max-width: 75%;
    }
    
    .about-title {
        font-size: 2.3rem;
    }
    
    .about-description {
        font-size: 1.05rem;
        max-width: 400px;
    }
    
    .flower-image {
        max-width: 350px;
    }
    
    .stats-ribbon {
        padding: 35px 0;
        margin: 50px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-symbol {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Services Grid - Tablet */
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 40px;
    }
    
    .icon-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    /* Sucursales - Tablet */
    .sucursales-section {
        padding: 50px 0;
    }
    
    .sucursales-title {
        font-size: 2.2rem;
    }
    
    .sucursales-grid {
        max-width: 800px;
    }
    
    .sucursal-card {
        padding: 25px 15px;
    }
    
    .sucursal-name {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .sucursal-image {
        max-width: 220px;
    }
    
    .sucursal-separator {
        height: 580px;
    }
    
    .schedule-title {
        font-size: 0.95rem;
    }
    
    .schedule-text {
        font-size: 0.95rem;
    }
    
    .schedule-hours {
        font-size: 0.95rem;
    }
    
    .schedule-title-container {
        gap: 12px;
    }
    
    .schedule-saturday-container {
        gap: 12px;
    }
    
    .schedule-line {
        max-width: 60px;
    }
    
    .schedule-saturday {
        font-size: 0.95rem;
    }
    
    .schedule-saturday-hours {
        font-size: 0.95rem;
    }
    
    .sucursal-button-container {
        margin-top: 20px;
    }
    
    .sucursal-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    /* Formulario Section - Tablet */
    .formulario-section {
        padding: 60px 0;
    }
    
    .formulario-container {
        max-width: 500px;
        padding: 0 1.5rem;
    }
    
    .form-wrapper {
        padding: 35px 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 15px;
    }
    
    .form-submit-button {
        font-size: 17px;
    }
    
    /* Testimonials Section - Tablet */
    .testimonials-grid-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .testimonials-grid {
        gap: 30px;
        max-width: 700px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .aqui-text {
        gap: 12px;
    }
    
    .testimonial-card {
        padding: 20px;
        gap: 15px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    /* Footer Section - Tablet */
    .footer-section {
        padding: 40px 0 25px 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo-container {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-columns {
        gap: 40px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-location {
        font-size: 0.9rem;
    }
    
    .footer-contact-icons {
        gap: 15px;
        margin-top: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-copyright {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    /* Loader - Tablet */
    .loader-logo-img {
        width: 180px;
    }
    
    .loader-text h2 {
        font-size: 2.2rem;
    }
    
    .loader-text p {
        font-size: 1.1rem;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .nav-left {
        display: none;
    }
    
    .nav-center {
        order: 1;
    }
    
    .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .mobile-menu {
        display: block;
        width: 40%;
        max-width: 200px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .mobile-nav-item {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 30px 15px;
        margin-bottom: 60px;
    }
    
    .hero-image {
        border-radius: 12px;
    }
    
    .hero-button-container {
        margin-top: 25px;
    }
    
    .hero-button {
        padding: 12px 35px;
        font-size: 16px;
    }
    
    /* About Section */
    .about-section {
        padding: 20px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .woman-container {
        margin: 0;
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .woman-image {
        transform: translateX(0);
        max-width: 80%;
        animation: fadeInUp 1.2s ease-out;
    }
    
    .text-flower-container {
        order: 1;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 25px;
        position: relative;
    }
    
    .about-title {
        font-size: 2.2rem;
        text-align: center;
        animation: slideInFromTop 1s ease-out 0.3s both;
    }
    
    .title-break {
        display: inline;
    }
    
    .about-description {
        font-size: 1.1rem;
        max-width: 100%;
        text-align: center;
        animation: fadeInUp 1s ease-out 0.6s both;
        position: relative;
        z-index: 3;
    }
    
    .flower-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        margin-top: 0;
    }
    
    .flower-image {
        max-width: 250px;
        animation: rotateIn 1.5s ease-out 0.8s both;
    }
    
    /* Stats Section */
    .stats-ribbon {
        padding: 30px 0;
        margin: 40px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        animation: fadeInUp 1s ease-out;
    }
    
    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .stat-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-symbol {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Main Content */
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    /* Section Separator */
    .section-separator {
        margin: 50px 0 0 0;
    }
    
    .separator-container {
        gap: 15px;
        max-width: 95vw;
    }
    
    .separator-title {
        font-size: 1.4rem;
        margin: 0 10px;
    }
    
    .separator-line {
        min-width: 20px;
        max-width: 60px;
    }
    
    .separator-break {
        display: inline;
    }
    
    /* Services Grid */
    .services-grid {
        padding: 60px 0;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 30px;
    }

    .icon-image {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 0.9rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    /* Sucursales - Mobile */
    .sucursales-section {
        padding: 50px 0;
    }
    
    .sucursales-container {
        padding: 0 1rem;
    }
    
    .sucursales-title-container {
        margin-bottom: 40px;
    }
    
    .sucursales-title {
        font-size: 1.8rem;
    }
    
    .sucursales-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 0;
        max-width: 100%;
    }
    
    .sucursal-card {
        padding: 25px 15px;
    }
    
    .sucursal-name {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .sucursal-image {
        max-width: 280px;
    }
    
    .sucursal-separator {
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
        margin: 20px auto;
        justify-self: center;
        grid-column: 1;
    }
    
    .schedule-title {
        font-size: 0.9rem;
    }
    
    .schedule-text {
        font-size: 0.9rem;
    }
    
    .schedule-hours {
        font-size: 0.9rem;
    }
    
    .schedule-title-container {
        gap: 10px;
    }
    
    .schedule-saturday-container {
        gap: 10px;
    }
    
    .schedule-line {
        max-width: 40px;
        min-width: 15px;
    }
    
    .schedule-saturday {
        font-size: 0.9rem;
    }
    
    .schedule-saturday-hours {
        font-size: 0.9rem;
    }
    
    .sucursal-button-container {
        margin-top: 18px;
    }
    
    .sucursal-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Video Section - Mobile */
    .full-width-video {
        min-height: 300px;
    }
    
    /* Formulario Section - Mobile */
    .formulario-section {
        min-height: 350px;
        padding: 50px 0;
    }
    
    .formulario-container {
        padding: 0 1rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .form-submit-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .checkbox-container {
        font-size: 13px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .error-message {
        font-size: 11px;
    }

    .image-comparison-container {
        max-width: 95vw;
    }
    .image-comparison-wrapper {
        max-width: 95vw;
        min-width: 180px;
    }
    
    .comparison-title-section {
        max-width: 95vw;
        padding: 25px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .comparison-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .image-comparison-container {
        max-width: 95vw;
    }
    .image-comparison-wrapper {
        max-width: 95vw;
        min-width: 180px;
        border-radius: 0 0 0 0;
    }
    
    .comparison-treatment-text {
        border-radius: 0 0 15px 15px;
        padding: 15px;
    }
    
    .comparison-treatment-text p {
        font-size: 0.85rem;
    }
    
    .comparison-label {
        font-size: 0.8rem;
        padding: 6px 12px;
        top: 15px;
    }
    
    .comparison-label--before {
        left: 15px;
    }
    
    .comparison-label--after {
        right: 15px;
    }
    
    /* Testimonials Section - Mobile */
    .testimonials-grid-section {
        padding: 50px 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 25px;
        max-width: 400px;
    }
    
    .testimonials-header {
        order: 1;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .aqui-text {
        gap: 10px;
    }
    
    .arrow-right {
        display: inline-flex;
    }
    
    .testimonial-card {
        padding: 18px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card:nth-child(2) { order: 2; }
    .testimonial-card:nth-child(3) { order: 3; }
    .testimonial-card:nth-child(4) { order: 4; }
    
    .testimonial-image {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-content {
        gap: 12px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Footer Section - Mobile */
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .footer-logo {
        height: 45px;
        margin-bottom: 10px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 300px;
    }
    
    .footer-column {
        gap: 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .footer-location {
        font-size: 0.85rem;
    }
    
    .footer-contact-icons {
        gap: 15px;
        margin-top: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon:hover {
        transform: translateY(-2px);
    }
    
    .footer-copyright {
        margin-top: 25px;
        padding-top: 15px;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    /* Loader - Mobile */
    .loader-logo-img {
        width: 200px;
    }
    
    .loader-text h2 {
        font-size: 1.8rem;
    }
    
    .loader-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .spinner {
        width: 35px;
        height: 35px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
    
    .mobile-menu {
        width: 50%;
        max-width: 180px;
    }
    
    .mobile-nav-item {
        font-size: 15px;
        padding: 10px 15px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 20px 10px;
        margin-bottom: 40px;
    }
    
    .hero-image {
        border-radius: 10px;
    }
    
    .hero-button-container {
        margin-top: 20px;
    }
    
    .hero-button {
        padding: 10px 30px;
        font-size: 15px;
    }
    
    /* About Section */
    .about-section {
        padding: 15px 0;
    }
    
    .about-container {
        padding: 0 1rem;
        gap: 30px;
    }
    
    .woman-container {
        margin: 0;
    }
    
    .woman-image {
        max-width: 90%;
    }
    
    .text-flower-container {
        gap: 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .title-break {
        display: inline;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.5;
        position: relative;
        z-index: 3;
    }
    
    .flower-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        margin-top: 0;
    }
    
    .flower-image {
        max-width: 200px;
    }
    
    /* Stats Section */
    .stats-ribbon {
        padding: 25px 0;
        margin: 30px 0;
    }
    
    .stats-container {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-symbol {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Main Content */
    .main-content {
        padding: 2rem 1rem;
    }
    
    .main-content h1 {
        font-size: 1.5rem;
    }
    
    /* Services Grid */
    .services-grid {
        padding: 50px 0;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 25px;
    }

    .icon-image {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 0.8rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 38px;
        height: 38px;
    }
    
    /* Sucursales - Small Mobile */
    .sucursales-section {
        padding: 40px 0;
    }
    
    .sucursales-container {
        padding: 0 0.5rem;
    }
    
    .sucursales-title-container {
        margin-bottom: 30px;
    }
    
    .sucursales-title {
        font-size: 1.6rem;
    }
    
    .sucursal-card {
        padding: 20px 10px;
    }
    
    .sucursal-name {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .sucursal-image {
        max-width: 250px;
    }
    
    .sucursal-separator {
        width: 70%;
        margin: 15px auto;
    }
    
    .schedule-title {
        font-size: 0.85rem;
    }
    
    .schedule-text {
        font-size: 0.85rem;
    }
    
    .schedule-hours {
        font-size: 0.85rem;
    }
    
    .schedule-title-container {
        gap: 8px;
    }
    
    .schedule-saturday-container {
        gap: 8px;
    }
    
    .schedule-line {
        max-width: 30px;
        min-width: 10px;
    }
    
    .schedule-saturday {
        font-size: 0.85rem;
    }
    
    .schedule-saturday-hours {
        font-size: 0.85rem;
    }
    
    .sucursal-button-container {
        margin-top: 15px;
    }
    
    .sucursal-button {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Video Section - Small Mobile */
    .full-width-video {
        min-height: 250px;
    }
    
    /* Formulario Section - Small Mobile */
    .formulario-section {
        min-height: 300px;
        padding: 40px 0;
    }
    
    .formulario-container {
        padding: 0 0.5rem;
    }
    
    .form-wrapper {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .form-submit-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .checkbox-container {
        font-size: 12px;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .form-checkbox:checked + .checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 8px;
    }
    
    .error-message {
        font-size: 10px;
    }

    .image-comparison-section {
        padding: 40px 0 30px 0;
    }
    .image-comparison-container {
        border-radius: 12px;
    }
    .image-comparison-wrapper {
        border-radius: 0;
    }
    .slider-handle::after {
        width: 20px;
        height: 20px;
    }
    
    .comparison-title-section {
        border-radius: 12px 12px 0 0;
        padding: 20px 10px;
    }
    
    .comparison-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .image-comparison-wrapper {
        border-radius: 0 0 12px 12px;
    }
    
    .image-comparison-section {
        padding: 40px 0 30px 0;
    }
    
    .comparison-title-section {
        border-radius: 12px 12px 0 0;
        padding: 20px 10px;
    }
    
    .comparison-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .image-comparison-wrapper {
        border-radius: 0 0 0 0;
    }
    
    .comparison-treatment-text {
        border-radius: 0 0 12px 12px;
        padding: 12px;
    }
    
    .comparison-treatment-text p {
        font-size: 0.8rem;
    }
    
    .comparison-label {
        font-size: 0.7rem;
        padding: 5px 10px;
        top: 12px;
    }
    
    .comparison-label--before {
        left: 12px;
    }
    
    .comparison-label--after {
        right: 12px;
    }
    
    .slider-handle::after {
        width: 20px;
        height: 20px;
    }
    
    /* Testimonials Section - Small Mobile */
    .testimonials-grid-section {
        padding: 40px 0;
    }
    
    .testimonials-container {
        padding: 0 0.5rem;
    }
    
    .testimonials-grid {
        gap: 20px;
        max-width: 320px;
    }
    
    .testimonials-title {
        font-size: 1.4rem;
    }
    
    .aqui-text {
        gap: 8px;
    }
    
    .testimonial-card {
        padding: 15px;
        gap: 12px;
    }
    
    .testimonial-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-content {
        gap: 10px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    /* Footer Section - Small Mobile */
    .footer-section {
        padding: 25px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 0.5rem;
    }
    
    .footer-logo-container {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 8px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 25px;
    }
    
    .footer-column:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 280px;
    }
    
    .footer-column {
        gap: 12px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-location {
        font-size: 0.8rem;
    }
    
    .footer-contact-icons {
        gap: 12px;
        margin-top: 8px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-copyright {
        margin-top: 20px;
        padding-top: 12px;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    
    /* Loader - Small Mobile */
    .loader-logo-img {
        width: 180px;
    }
    
    .loader-text h2 {
        font-size: 1.6rem;
    }
    
    .loader-text p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .spinner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
}

