/* Clínica Biodermo - Estilos de la landing */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --cyan: #0BC5E8;
    --cyan-dark: #00B4D8;
    --navy: #004E89;
    --navy-dark: #003D6B;
    --light-blue: #E8F6FA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografía */
h2, h3 { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6,
.hero-text h1,
.section-title,
.category-title,
.logo,
.step h3,
.prop-card h3,
.service-card h4 {
    font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Brillo que recorre el botón - shine sweep */
@keyframes cta-shine {
    0% { transform: skewX(-25deg) translateX(-100%); }
    100% { transform: skewX(-25deg) translateX(400%); }
}

/* CTAs y enlaces - Google Sans */
.btn-header,
.btn-primary,
.btn-secondary,
.btn-large,
.btn-location,
.btn-map,
.btn-schedule,
.btn-submit,
.btn-contact,
.nav-link,
.service-link,
.carousel-card-link,
.footer-links a,
.social-link,
.whatsapp-float {
    font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s;
}

.nav-overlay {
    display: none;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--cyan);
}

.btn-header {
    background: var(--cyan);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(11, 197, 232, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.btn-header:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 197, 232, 0.35);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(11, 197, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(11, 197, 232, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11, 197, 232, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 5/5;
    border-radius: 30px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.badge-top {
    top: 20px;
    right: -20px;
}

.badge-bottom {
    bottom: 30px;
    left: -30px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-text span {
    color: var(--gray-600);
    font-size: 0.85rem;
}

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

/* Value Props */
.value-props {
    padding: 5rem 2rem;
    background: white;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.props-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.prop-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: var(--gray-50);
    border-radius: 24px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.prop-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(11, 197, 232, 0.15);
}

.prop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.prop-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
}

.prop-card p {
    color: var(--gray-600);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light-blue) 0%, white 100%);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.service-category {
    margin: 7rem 0 0 0;
}

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

.category-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.25rem;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 78, 137, 0.12);
    border-color: var(--cyan);
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-benefits li {
    padding: 0.6rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-benefits li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 2px solid var(--cyan);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 197, 232, 0.3);
}

/* Tratamientos Faciales - Carrusel */
.facial-treatments .category-header {
    margin-bottom: 4rem;
    text-align: center;
}

.facial-treatments .category-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.facial-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 3rem;
}

.facial-carousel-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.facial-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.facial-carousel-card {
    width: calc((1200px - 8rem) / 3);
    min-width: calc((1200px - 8rem) / 3);
    flex-shrink: 0;
    flex-grow: 0;
}

.facial-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.facial-carousel-nav button {
    pointer-events: auto;
}

.facial-carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--cyan);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 197, 232, 0.3);
}

.facial-carousel-btn:hover {
    background: var(--cyan-dark);
    transform: scale(1.1);
}

.facial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.facial-carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.facial-carousel-dot.active {
    background: var(--cyan);
    width: 36px;
    border-radius: 6px;
}

.facial-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 78, 137, 0.08);
}

.facial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.facial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 78, 137, 0.18);
    border-color: var(--cyan);
}

.facial-card:hover::before {
    opacity: 1;
}

.facial-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(11, 197, 232, 0.12) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.facial-card h4 {
    font-size: 1.4rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.facial-card .service-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.facial-card .service-benefits li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.facial-card .service-link {
    font-weight: 700;
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 12px 35px rgba(0, 78, 137, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 78, 137, 0.4);
}

/* Sueroterapia Special Card */
.suero-card {
    background-image: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(0, 61, 107, 0.95) 100%),
                      url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 4rem 3rem;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.suero-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.suero-card .category-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Iconos Sueroterapia - diseño mejorado */
.suero-card .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.suero-card .benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.suero-card .benefit-icon:hover {
    background: rgba(11, 197, 232, 0.3);
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.suero-card .benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--cyan);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Results Section */
.results {
    display: none;
    padding: 0rem 2rem 6rem 2rem;
    background: white;
}

.results-container {
    max-width: 1280px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: var(--gray-50);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
}

.result-card:hover {
    transform: scale(1.03);
}

.result-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.result-image::after {
    content: 'RESULTADOS REALES';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.result-info {
    padding: 1.75rem;
}

.result-treatment {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.result-testimonial {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light-blue) 0%, white 100%);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50px;
    font-size: 2.5rem;
    color: var(--cyan);
    opacity: 0.3;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(11, 197, 232, 0.3);
}

.step h3 {
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
}

.step p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 2rem 2rem 6rem 2rem;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Locations Section */
.locations {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
}

.locations-container {
    max-width: 1280px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.location-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 78, 137, 0.08);
    transition: all 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 78, 137, 0.15);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-pin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.location-header h3 {
    font-size: 1.75rem;
    color: var(--navy);
    font-weight: 800;
}

.location-info {
    margin-bottom: 2rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gray-700);
}

.location-detail strong {
    color: var(--navy);
    min-width: 90px;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-location {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid;
}

.btn-map {
    background: white;
    color: var(--navy);
    border-color: var(--gray-300);
}

.btn-map:hover {
    border-color: var(--cyan);
    background: var(--light-blue);
}

.btn-schedule {
    background: var(--cyan);
    color: white;
    border-color: var(--cyan);
    position: relative;
    overflow: hidden;
}

.btn-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.btn-schedule:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
}

/* Carousel Corporales - Diseño Disruptivo (full width) */
.corporales-section {
    background: linear-gradient(135deg, #001529 0%, #003D6B 50%, #004E89 100%);
    padding: 8rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.corporales-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(11, 197, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.corporales-section .category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.corporales-section .category-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.corporales-section .category-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 8px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.corporales-section .carousel-card {
    width: calc((1200px - 8rem) / 3);
    min-width: calc((1200px - 8rem) / 3);
}

@media (max-width: 1240px) {
    .corporales-section .carousel-card {
        width: calc((100vw - 8rem) / 3);
        min-width: calc((100vw - 8rem) / 3);
    }

    .facial-carousel-card {
        width: calc((100vw - 8rem) / 3);
        min-width: calc((100vw - 8rem) / 3);
    }
}

.carousel-card {
    width: calc((1200px - 4rem) / 3);
    min-width: calc((1200px - 4rem) / 3);
    flex-shrink: 0;
    flex-grow: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.carousel-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.carousel-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carousel-card-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.carousel-card h4 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1;
}

.carousel-card-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.carousel-benefits {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    gap: 0.75rem;
}

.carousel-benefits li {
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.carousel-benefits li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.carousel-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.3);
    position: relative;
    overflow: hidden;
}

.carousel-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.carousel-card-link:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(0, 78, 137, 0.4);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.carousel-nav button {
    pointer-events: auto;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-btn:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(11, 197, 232, 0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--cyan);
    width: 40px;
    border-radius: 6px;
}

.corporales-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.corporales-cta .btn-large {
    background: white;
    color: var(--navy);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

.corporales-cta .btn-large:hover {
    background: var(--cyan);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(11, 197, 232, 0.4);
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-iframe-wrapper {
    min-height: 500px;
    width: 100%;
}

.contact-form-iframe-wrapper iframe {
    min-height: 500px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(11, 197, 232, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: white;
    padding: 1.4rem;
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 12px 35px rgba(11, 197, 232, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cta-shine 2.5s ease-in-out 2s infinite;
    pointer-events: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(11, 197, 232, 0.4);
}

.alternative-contact {
    text-align: center;
    margin-top: 3rem;
}

.alternative-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    background: white;
    color: var(--navy);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--cyan);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .props-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step::after {
        display: none;
    }

    .carousel-card {
        width: calc((100vw - 6rem) / 2);
        min-width: calc((100vw - 6rem) / 2);
    }

    .corporales-section .carousel-card {
        width: calc((100vw - 8rem) / 2);
        min-width: calc((100vw - 8rem) / 2);
    }

    .carousel-track {
        padding: 0 2rem;
    }

    .facial-carousel-card {
        width: calc((100vw - 8rem) / 2);
        min-width: calc((100vw - 8rem) / 2);
    }

    .facial-carousel-track {
        padding: 0 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger,
    .nav,
    .nav-overlay {
        display: none;
    }

    .header-content {
        padding: 1rem 1rem;
        justify-content: center;
    }

    .logo-image {
        height: 60px;
    }

    .service-category {
        margin: 4rem 0 0 0;
    }

    .service-category:not(.facial-treatments) .category-header {
        display: none;
    }

    .facial-treatments .category-header {
        margin-bottom: 1rem;
    }

    .corporales-section .category-header {
        margin-bottom: 1rem;
    }

    .suero-card h3 {
        line-height: 1;
        margin-bottom: 20px;
    }

    .btn-large {
        line-height: 1;
    }

    .hero {
        padding: 4rem 1rem;
        margin-top: 70px;
    }

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

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-slideshow {
        max-width: 380px;
        margin: 0 auto;
    }

    .value-props {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .services {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .results {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .locations,
    .final-cta,
    .cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .final-cta h2 {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 20px;
    }

    .final-cta .section-subtitle {
        font-size: 1rem;
    }

    .location-card {
        padding: 2rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1.5rem;
    }

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

    .section-title {
        font-size: 2rem;
        line-height: 1;
    }

    .category-title {
        line-height: 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .props-grid,
    .services-grid,
    .results-grid,
    .locations-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        display: none;
    }

    .carousel-track {
        padding: 0 1rem;
    }

    .facial-carousel-card {
        width: calc(100vw - 10rem);
        min-width: calc(100vw - 10rem);
    }

    .facial-carousel-track {
        padding: 0;
    }

    .corporales-section {
        padding: 4rem 1rem;
    }

    .corporales-section .category-title {
        font-size: 2rem;
    }

    .corporales-section .carousel-card {
        width: calc(100vw - 10rem);
        min-width: calc(100vw - 10rem);
    }

    .carousel-card {
        width: calc(100vw - 8rem);
        min-width: calc(100vw - 8rem);
    }

    .carousel-nav {
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .facial-carousel-container {
        padding: 0 1rem 3rem;
    }
}

@media (max-width: 480px) {
    .corporales-section .carousel-card {
        width: calc(100vw - 11rem);
        min-width: calc(100vw - 11rem);
    }

    .facial-carousel-card {
        width: calc(100vw - 11rem);
        min-width: calc(100vw - 11rem);
    }

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

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .prop-card {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .suero-card {
        padding: 2.5rem 1.5rem;
    }

    .suero-card h3 {
        font-size: 1.75rem;
    }

    .hero-slideshow {
        max-width: 100%;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
}

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}
