/* Modern Beauty Studio Styles */

/* ========================================
   VARIABLES & TYPOGRAPHY
   ======================================== */
:root {
    --primary-color: #d63384;
    --secondary-color: #f8d7da;
    --accent-color: #ffd6cc;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffeef3 0%, #ffffff 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important; /* Fondo blanco sólido siempre */
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important; /* Fondo blanco sólido siempre */
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    padding: 0;
}

.brand-container {
    text-align: left;
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .brand-logo {
    height: 58px;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(255,255,255,0.5);
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

/* Estilos unificados para navbar siempre blanca */
.navbar .brand-text {
    text-shadow: none;
}

.navbar .brand-subtitle {
    text-shadow: none;
}

.navbar .nav-link {
    text-shadow: none;
    background: transparent;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(214, 51, 132, 0.1);
}

/* Active navigation indicator */
.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link.active {
    color: #ff00c6;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff00c6, #ff00c6 70%, transparent);
    border-radius: 2px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 30px;
        opacity: 1;
    }
}

/* Hide active indicator on mobile devices */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link.active::after {
        display: none;
    }
}

.navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: rgba(255, 0, 198, 0.5);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: #000000 !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Espacio para el navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(255,255,255,0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 2.5px, transparent 2.5px),
        radial-gradient(circle at 30% 80%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 15%, rgba(255,255,255,0.1) 1.8px, transparent 1.8px);
    background-size: 150px 150px, 200px 200px, 180px 180px, 120px 120px, 160px 160px;
    background-position: 0 0, 50px 50px, 100px 0, 25px 75px, 75px 25px;
    opacity: 0.8;
    z-index: 1;
    animation: float-pattern 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title .text-primary {
    color: var(--primary-color) !important;
}

/* Typewriter Animation */
.typewriter-text {
    position: relative;
    display: inline-block;
}

.typewriter-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
    font-weight: normal;
}

.typewriter-text.typing::after {
    animation: none;
}

.typewriter-text.deleting::after {
    animation: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Asegurar que el texto tenga la altura adecuada */
.typewriter-text {
    min-height: 1em;
    vertical-align: baseline;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(214, 51, 132, 0.1);
    min-width: 180px;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-color), #e85496);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 600px;
    /* border-radius: var(--border-radius); */
    /* box-shadow: var(--shadow-heavy); */
    transform: rotate(5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Elementos flotantes decorativos */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-element-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.floating-element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #a55eea, #8854d0);
}

.floating-element-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #26de81, #20bf6b);
}

.floating-element-4 {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.floating-element-5 {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}

.floating-element-6 {
    top: 30%;
    right: 5%;
    animation-delay: 5s;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.floating-element:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Botones con gradiente rosa mejorado */
.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

/* Botones outline mejorados */
.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

/* Botones específicos para navbar */
.navbar .btn {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar .btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border: none;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transform: translateY(-1px);
    color: var(--white);
}

.navbar .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.navbar .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Botones en sección CTA */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    z-index: 1;
    /* Fix for white box issue */
    border: none;
    outline: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: transparent;
    /* Ensure no white background */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    /* Prevent white space below image */
}

/* Ensure overlay works correctly */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.9) 0%, rgba(231, 60, 126, 0.9) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.service-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* Services section styling */
.services {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* Ensure proper spacing and no interference */
.services .container {
    position: relative;
    z-index: 2;
}

/* Additional fix for any pseudo-elements that might cause issues */
.service-card::before,
.service-card::after,
.service-image::before,
.service-image::after {
    display: none !important;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.9) 0%, rgba(231, 60, 126, 0.9) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.service-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* ========================================
   GALLERY SECTION - Carrusel Automático
   ======================================== */
.gallery {
    padding: 2rem 0; /* Reducido de 5rem a 2rem */
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100vw; /* Ancho completo de la ventana */
    position: relative;
    margin-left: calc(-50vw + 50%); /* Centra el contenedor de ancho completo */
    height: 450px; /* Altura aumentada de 400px a 450px */
    background: #f8f9fa; /* Mantiene el fondo de la sección */
    display: flex;
    align-items: center; /* Centra verticalmente el carrusel */
}

.gallery-carousel {
    display: flex;
    animation: scroll-right-to-left 30s linear infinite;
    width: calc(200%); /* Para las 16 imágenes (8 originales + 8 duplicadas) */
    height: 100%; /* Ocupa toda la altura del contenedor */
    align-items: center; /* Centra las imágenes verticalmente */
    padding: 0 15px;
}

.gallery-slide {
    flex: 0 0 20%; /* 5 imágenes visibles por fila en ancho completo */
    padding: 0 8px;
    height: 100%; /* Ocupa toda la altura disponible */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra verticalmente cada slide */
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    width: 100%;
    height: 320px; /* Altura reducida para hacer espacio al botón */
    cursor: grab;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.gallery-expand-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    width: fit-content;
    margin: 0 auto;
}

.gallery-expand-btn:hover {
    background: #b02a5b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.gallery-expand-btn i {
    font-size: 0.9rem;
}

/* Animación del carrusel */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Se mueve 50% porque tenemos 100% duplicado */
    }
}

/* Pausar animación al hover */
.gallery-carousel-container:hover .gallery-carousel {
    animation-play-state: paused;
}

/* Drag functionality styles */
.gallery-carousel {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    scroll-behavior: smooth;
}

.gallery-carousel.dragging {
    animation-play-state: paused !important;
    scroll-behavior: auto;
}

.gallery-carousel.dragging .gallery-item {
    pointer-events: none;
}

.gallery-carousel.no-click .gallery-item {
    pointer-events: none;
}

.gallery-carousel img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Carousel drag functionality */
.gallery-carousel {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.3s ease;
}

.gallery-carousel.no-click .gallery-item {
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1400px) {
    .gallery-slide {
        flex: 0 0 25%; /* 4 imágenes por fila en pantallas grandes */
    }
}

@media (max-width: 1200px) {
    .gallery-slide {
        flex: 0 0 33.333%; /* 3 imágenes por fila en pantallas medianas */
    }
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        height: 350px; /* Altura aumentada de 300px a 350px para tablets */
    }
    
    .gallery-item {
        height: 250px; /* Altura aumentada de 220px a 250px para tablets */
    }
    
    .gallery-slide {
        flex: 0 0 50%; /* 2 imágenes por fila en tablets */
    }
    
    .gallery-carousel {
        animation-duration: 20s; /* Más rápido en tablets */
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-container {
        height: 300px; /* Altura aumentada de 250px a 300px para móviles */
    }
    
    .gallery-item {
        height: 220px; /* Altura aumentada de 180px a 220px para móviles */
    }
    
    .gallery-slide {
        flex: 0 0 80%; /* 1 imagen centrada en móviles pequeños */
    }
    
    .gallery-carousel {
        animation-duration: 15s; /* Aún más rápido */
        padding: 0 8px;
    }
}

/* ========================================
   LIGHTBOX PARA GALERÍA
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background: rgba(255, 0, 198, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 0, 198, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-size: 14px;
}

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

/* Responsive para lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* ========================================
   MODERN IMAGE VIEWER
   ======================================== */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.image-viewer-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.image-viewer.active .image-viewer-image {
    transform: scale(1);
}

.image-viewer-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.image-viewer-loader.active {
    display: block;
}

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

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

/* Close Button */
.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-viewer-close:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Navigation Buttons */
.image-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-viewer-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.image-viewer-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.image-viewer-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%);
}

.image-viewer-prev {
    left: 20px;
}

.image-viewer-next {
    right: 20px;
}

/* Info Section */
.image-viewer-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.image-viewer-counter {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.image-viewer-caption {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-viewer-container {
        width: 95%;
        height: 95%;
    }
    
    .image-viewer-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .image-viewer-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .image-viewer-prev {
        left: 15px;
    }
    
    .image-viewer-next {
        right: 15px;
    }
    
    .image-viewer-info {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .image-viewer-counter {
        font-size: 14px;
    }
    
    .image-viewer-caption {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .image-viewer-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .image-viewer-info {
        padding: 10px 15px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

/* Phone input validation styles */
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.8-.8 2.24-2.24a.75.75 0 0 1 1.06 1.06L3.6 7.56a.75.75 0 0 1-1.06 0L.84 5.85a.75.75 0 0 1 1.06-1.06l.4.4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='M5.8 5.8l4.4 4.4M10.2 5.8l-4.4 4.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.phone-validation-message {
    font-size: 0.875em;
    margin-top: 0.25rem;
    color: #dc3545;
}

/* Phone input specific styling */
#phone-input {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-brand h5 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(214, 51, 132, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #22c55e;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
      .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        min-width: auto;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
      .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image img {
        max-width: 450px;
        transform: none;
    }
    
    .hero-image img:hover {
        transform: scale(1.05);
    }
    
    /* Elementos flotantes en móvil - más pequeños y menos cantidad */
    .floating-element {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .floating-element-3,
    .floating-element-5 {
        display: none; /* Ocultar algunos elementos en móvil */
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
      /* Navbar responsivo */
    .navbar {
        padding: 0.8rem 0;
        min-height: 70px; /* Altura mínima consistente */
        background: rgba(255, 255, 255, 0.98) !important; /* Fondo blanco consistente */
        backdrop-filter: blur(15px);
        box-shadow: var(--shadow-medium);
    }
    
    .navbar:not(.scrolled) {
        background: rgba(255, 255, 255, 0.98) !important; /* Fondo blanco sólido siempre */
        backdrop-filter: blur(15px);
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        box-shadow: var(--shadow-medium);
    }
    
    .hero {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 2rem 0; /* Mantener padding-top para mobile */
        min-height: calc(100vh - 80px); /* Ajustar altura mínima */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services,
    .gallery,
    .contact {
        padding: 3rem 0;
    }
    
    /* Asegurar que service-hero también tenga padding adecuado en mobile */
    .service-hero {
        padding-top: 80px;
    }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Hero Section */
.service-hero {
    padding: 5rem 0 3rem;
    background: #000000 !important;
}

.service-hero-content {
    padding: 2rem 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.service-features-grid .feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-features-grid .feature-item div {
    display: flex;
    flex-direction: column;
}

.service-features-grid .feature-item strong {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.service-features-grid .feature-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.service-hero-image {
    text-align: center;
}

.service-hero-image img {
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Techniques Section */
.techniques {
    padding: 5rem 0;
}

.technique-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.technique-image {
    height: 200px;
    overflow: hidden;
}

.technique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.technique-card:hover .technique-image img {
    transform: scale(1.05);
}

.technique-content {
    padding: 1.5rem;
}

.technique-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.technique-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.technique-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.technique-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.technique-benefits i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Care Section */
.care {
    padding: 5rem 0;
}

.care-tips {
    max-width: 500px;
}

.care-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.care-tip i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.care-tip h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.care-tip p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.care-image {
    text-align: center;
}

.care-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta .section-title::after {
    background: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.cta .btn-light:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN FOR SERVICE PAGES
   ======================================== */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .service-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .care-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .care-tip i {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 3rem 0 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .techniques,
    .process,
    .care,
    .cta {
        padding: 3rem 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c12a6b;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.services-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Main Services Grid */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.main-service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.main-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.main-service-card .service-image {
    height: 250px;
    overflow: hidden;
}

.main-service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-service-card:hover .service-image img {
    transform: scale(1.05);
}

.main-service-card .service-content {
    padding: 2rem;
}

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

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-highlights i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* Techniques Grid */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.technique-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.technique-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.technique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technique-content {
    padding: 1.5rem;
    text-align: center;
}

.technique-content h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.technique-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.technique-price {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Additional Services Grid */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.additional-service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.additional-service-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-details .duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-details .price {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
}

.package-content {
    padding: 2rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.package-includes i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.package-savings {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2rem 1rem;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.reason-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* ========================================
   FASHION & TRENDS PAGE STYLES
   ======================================== */

/* Fashion Hero Section */
.fashion-hero {
    background: linear-gradient(135deg, 
        rgba(214, 51, 132, 0.1) 0%, 
        rgba(255, 214, 204, 0.1) 50%, 
        rgba(248, 215, 218, 0.1) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.fashion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.fashion-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.fashion-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fashion-hero-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.fashion-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fashion-hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fashion-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.fashion-hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.fashion-hero-buttons .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.fashion-hero-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

/* Fashion Trends Section */
.fashion-trends {
    padding: 5rem 0;
}

.trend-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.trend-image {
    height: 300px;
    overflow: hidden;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trend-card:hover .trend-image img {
    transform: scale(1.1);
}

.trend-content {
    padding: 1.5rem;
    text-align: center;
}

.trend-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trend-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.trend-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Fashion Gallery Section */
.fashion-gallery {
    padding: 5rem 0;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 51, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Fashion Blog Section */
.fashion-blog {
    padding: 5rem 0;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   CUSTOM COMPONENTS
   ======================================== */

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-medium);
}

.card-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.card-content {
    padding: 1.5rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    background: var(--primary-color);
    transition: var(--transition);
}

.badge:hover {
    background: #ad1457;
}

/* Progress Bars */
.progress {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    margin: 1rem 0;
}

.progress-bar {
    background: var(--primary-color);
    height: 100%;
    transition: width 0.3s ease;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.table th, .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.table-striped tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.select-control {
    position: relative;
}

.select-control::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}

/* ========================================
   MODALS
   ======================================== */
.modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
    color: var(--text-dark);
}

.modal-footer {
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ========================================
   TOASTS
   ======================================== */
.toast {
    border-radius: var(--border-radius);
    padding: 1rem;
    color: var(--white);
    background: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

/* ========================================
   DARK MODE
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #121212;
        --dark-card: #1e1e1e;
        --dark-text: #e0e0e0;
        --dark-muted: #a0a0a0;
        --dark-primary: #bb86fc;
        --dark-secondary: #3700b3;
    }
    
    body {
        background-color: var(--dark-bg);
        color: var(--dark-text);
    }
    
    .navbar {
        background: rgba(30, 30, 30, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .section-title {
        color: var(--dark-text);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #bb86fc 0%, #3700b3 100%);
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, #3700b3 0%, #bb86fc 100%);
    }
    
    .card {
        background: var(--dark-card);
        color: var(--dark-text);
    }
    
    .footer {
        background: var(--dark-card);
        color: var(--dark-text);
    }
    
    .table {
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .table th {
        background: var(--dark-primary);
        color: var(--white);
    }
    
    .table-striped tbody tr:nth-child(odd) {
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Modales en modo oscuro */
    .modal-content {
        background: var(--dark-card);
        color: var(--dark-text);
    }
    
    .modal-header {
        background: var(--dark-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .modal-footer {
        background: rgba(255, 255, 255, 0.03);
    }
    
    /* Toasts en modo oscuro */
    .toast {
        background: var(--dark-primary);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

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

.slide-in-down {
    animation: slideInDown 0.5s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zoom-in {
    animation: zoomIn 0.5s ease-out;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(10deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.rotate-in {
    animation: rotateIn 0.5s ease-out;
}

/* ========================================
   PLUGINS
   ======================================== */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background: #009688;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.lightbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* ========================================
   SERVICE DETAILS IMPROVEMENTS
   ======================================== */

/* Service Section Styling */
.intro-section {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.05) 0%, rgba(255, 214, 204, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.benefits-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.process-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.care-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(214, 51, 132, 0.1);
}

/* Section Headers */
.section-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Step Cards */
.step-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   ADDITIONAL SERVICE INFO SECTION
   ======================================== */

.additional-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 100%;
}

.info-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    width: 100%;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.info-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.info-item h5 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.info-item li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .additional-info-section {
        padding: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .benefit-card,
    .care-card {
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon,
    .care-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .care-time {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .price-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .service-info-content {
        padding: 1rem 0;
    }
    
    .benefit-card,
    .care-card {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   MOBILE NAVIGATION FIXES
   ======================================== */

/* Media query específica para tablets */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-radius: var(--border-radius);
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-medium);
    }
    
    .navbar.fixed-top .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }
}

/* Media query específica para móviles */
@media (max-width: 767.98px) {
    .navbar {
        padding: 0.5rem 0;
        min-height: 80px; /* Altura mínima para mobile */
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0;
        min-height: 70px;
    }
    
    .hero {
        padding-top: 80px !important; /* Forzar padding en mobile */
        min-height: calc(100vh - 80px);
    }
    
    .service-hero {
        padding-top: 80px !important;
        min-height: auto;
    }
}

/* Media query para móviles muy pequeños */
@media (max-width: 575.98px) {
    .navbar {
        min-height: 80px;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .brand-logo {
        height: 52px;
    }
    
    .brand-text {
        font-size: 1.6rem;
    }
    
    .brand-subtitle {
        font-size: 0.75rem;
    }
    
    .hero {
        padding-top: 80px !important;
        padding-bottom: 2rem;
    }
    
    .service-hero {
        padding-top: 80px !important;
    }
}

/* ========================================
   EXTENSIONS PAGE STYLES
   ======================================== */

/* Extensions Hero Section */
.extensions-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.extensions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(214, 51, 132, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(255, 214, 204, 0.1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 70%, rgba(248, 215, 218, 0.12) 2.5px, transparent 2.5px);
    background-size: 150px 150px, 200px 200px, 180px 180px;
    background-position: 0 0, 50px 50px, 100px 0;
    opacity: 0.8;
    z-index: 1;
    animation: float-pattern 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.extensions-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d63384 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(214, 51, 132, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Services Gallery */
.services-gallery {
    padding: 5rem 0;
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.9) 0%, rgba(231, 60, 126, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-expand-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-expand-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.service-content {
    padding: 2rem;
}

.service-name {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info i {
    color: var(--primary-color);
    width: 16px;
}

.service-book-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-book-btn:hover {
    background: linear-gradient(135deg, #c12a6b 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    color: var(--white);
}

/* Care Instructions */
.care-instructions {
    padding: 5rem 0;
}

.care-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.care-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.care-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.care-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: var(--primary-color);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-modal.active .service-modal-content {
    transform: scale(1);
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.service-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.service-modal-body {
    padding: 2rem;
}

.modal-service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.modal-service-details h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-service-details p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-service-info {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--text-dark);
}

.info-item span {
    color: var(--text-muted);
}

.modal-book-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e73c7e 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-book-btn:hover {
    background: linear-gradient(135deg, #c12a6b 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    color: var(--white);
}

/* Responsive Design for Extensions Page */
@media (max-width: 992px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .extensions-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .service-modal-body {
        padding: 1.5rem;
    }
    
    .modal-service-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .extensions-hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-gallery,
    .care-instructions,
    .cta-section {
        padding: 3rem 0;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .care-card {
        padding: 1.5rem;
    }
}
