/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cookie-banner,
    .floating-elements,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        display: none;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}
.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
/* ===== PÁGINAS INTERNAS ===== */
.hero-inner {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner .hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-inner .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    margin: 20px auto;
}

/* ===== PÁGINA SOBRE NOSOTROS ===== */
.historia {
    background: var(--white);
    position: relative;
}

.story-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.story-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.story-content {
    padding-left: 2rem;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.filosofia {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.filosofia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(143, 188, 143, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(152, 216, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.philosophy-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;
}

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

.philosophy-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--gray-600);
    margin: 0;
}

.equipo {
    background: var(--white);
}

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

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

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(143, 188, 143, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

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

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
}

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

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.certificaciones {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certification-item {
    text-align: center;
    padding: 1.5rem;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-light);
}

.cert-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.certification-item h6 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.certification-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .btn-outline-primary {
    color: var(--white);
    border-color: var(--white);
}

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

/* ===== PÁGINA DE CONTACTO ===== */
.contacto-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-200);
}

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

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

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: var(--primary-color);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

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

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.form-check-label {
    color: var(--gray-600);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    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;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--gray-600);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.map-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.horarios-section {
    background: var(--white);
    padding: 3rem 0;
}

.horarios-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.horarios-card h5 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item span:first-child {
    font-weight: 500;
}

.horario-item span:last-child {
    opacity: 0.9;
}

/* ===== PÁGINAS LEGALES ===== */
.legal-page {
    padding: 2rem 0 5rem;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--dark-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-meta {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.legal-meta p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.legal-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.legal-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.legal-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.legal-contact a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

/* ===== RESPONSIVE PARA PÁGINAS INTERNAS ===== */
@media (max-width: 992px) {
    .hero-inner .hero-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: var(--gray-100);
        border-radius: 10px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-inner .hero-title {
        font-size: 2rem;
    }
    
    .hero-inner .hero-subtitle {
        font-size: 1rem;
    }
    
    .philosophy-card,
    .team-card,
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contacto-hero {
        padding: 7rem 0 2rem;
    }
    
    .map-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}

.legal-page{
    padding-top: 140px;
}

@media (max-width: 576px) {
    .hero-inner .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .philosophy-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .philosophy-icon i,
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .team-content {
        padding: 1.5rem;
    }
    
    .team-specialties {
        gap: 0.3rem;
    }
    
    .specialty {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
    /* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #8FBC8F;
    --secondary-color: #98D8C8;
    --accent-color: #F7DBA7;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-900: #212529;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --shadow-light: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== UTILIDADES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color) !important;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(143, 188, 143, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    background-color: #7da87d;
    border-color: #7da87d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.8) 0%,
        rgba(143, 188, 143, 0.6) 50%,
        rgba(152, 216, 200, 0.4) 100%
    );
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.floating-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50% 0;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.leaf-3 {
    top: 80%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===== EXPERIENCIA SENSORIAL ===== */
.experiencia-sensorial {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.experiencia-sensorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(143, 188, 143, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(152, 216, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.experience-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.experience-image-container img {
    transition: transform 0.5s ease;
}

.experience-image-container:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-content {
    padding-left: 2rem;
}

.experience-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===== RITUAL DE BIENESTAR ===== */
.ritual-bienestar {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.ritual-step {
    text-align: center;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.ritual-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    display: inline-block;
    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: 20px auto;
    box-shadow: var(--shadow-medium);
}

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

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.ritual-step h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.ritual-step p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== SERVICIOS ===== */
.servicios {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

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

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

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 10px;
}

.service-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price .duration {
    color: var(--gray-600);
    font-weight: 500;
}

.featured-service {
    border: 2px solid var(--primary-color);
}

/* ===== RESERVAS ===== */
.reservas {
    padding: 80px 0;
    background: var(--white);
}

.booking-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.info-item p {
    color: var(--gray-600);
    margin: 0;
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-200);
}

.calendar-container h4 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mini-calendar {
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--gray-100);
}

.calendar-month {
    font-weight: 600;
    color: var(--dark-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-day:hover {
    background: var(--gray-100);
}

.calendar-day.available {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-day.selected {
    background: var(--dark-color);
    color: var(--white);
}

.time-slots h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.time-slot {
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== TESTIMONIOS ===== */
.testimonios {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.testimonials-slider {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    margin: 0 1rem;
}

.testimonial-content .stars {
    margin-bottom: 1rem;
}

.testimonial-content .stars i {
    color: #FFD700;
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== VIRTUAL TOUR ===== */
.virtual-tour {
    padding: 80px 0;
    background: var(--white);
}

.tour-features {
    list-style: none;
    margin-top: 2rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tour-features i {
    margin-right: 1rem;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.play-button:hover {
    transform: scale(1.1);
    background: #7da87d;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-section h5,
.footer-section h6 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

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

.contact-info i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    color: var(--primary-color);
}

.contact-info span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .experience-content {
        padding-left: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-description {
        text-align: center;
    }
    
    .experience-content {
        padding-left: 0;
        text-align: center;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ritual-step {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-days {
        gap: 0.2rem;
    }
    
    .testimonial-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-outline-primary,
    .btn-outline-light {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-price {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-price .price {
        font-size: 1.5rem;
    }
    
    .booking-card {
        padding: 1rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }
    
    .time-slot {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    
    .floating-leaf {
        display: none;
    }
    
    .cookie-text {
        font-size: 0.9rem;
    }
    
    .cookie-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

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

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

.service-card.featured-service {
    animation: pulse 3s ease-in-out infinite;
}

/* ===== EFECTOS ESPECIALES ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(143, 188, 143, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(152, 216, 200, 0.3) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.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(--secondary-color));
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

/* ===== ESTADOS DE CARGA ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FOCUS STYLES ===== */
.btn:focus,
.nav-link:focus,
.time-slot:focus,
.calendar-day:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cookie-banner,
    .floating-elements,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        display: none;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}