/* Variables CSS */
:root {
    --primary-color: #8B5A6B;
    --secondary-color: #A8E6CF;
    --accent-color: #F7DC6F;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-cream: #FAF8F4;
    --background-soft: #F8F9FA;
    --gradient-warm: linear-gradient(135deg, #8B5A6B 0%, #A8E6CF 100%);
    --gradient-cool: linear-gradient(45deg, #A8E6CF 0%, #F7DC6F 100%);
    --shadow-soft: 0 10px 30px rgba(139, 90, 107, 0.1);
    --shadow-hover: 0 15px 40px rgba(139, 90, 107, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Tipografías personalizadas */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-dancing {
    font-family: 'Dancing Script', cursive;
}

/* Header Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 90, 107, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(139, 90, 107, 0.3), rgba(168, 230, 207, 0.2)), 
                url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.btn-hero {
    background: var(--gradient-warm);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(247, 220, 111, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 12px; height: 12px; left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { width: 6px; height: 6px; left: 60%; animation-delay: 4s; }
.particle:nth-child(4) { width: 10px; height: 10px; left: 80%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-10vh) rotate(180deg); opacity: 0.8; }
}

/* Sección Experiencia Sensorial */
.sensorial-section {
    padding: 8rem 0;
    background: var(--background-cream);
    position: relative;
    overflow: hidden;
}

.sensorial-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--gradient-cool);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.sensorial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sensorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-warm);
}

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

.sensorial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.sensorial-card:hover .sensorial-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Rincones Secretos */
.secret-corners {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.1) 0%, rgba(247, 220, 111, 0.05) 100%);
    position: relative;
}

.corner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 400px;
    position: relative;
}

.corner-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.corner-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.corner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    color: white;
}

/* Testimonios Interactivos */
.testimonials-section {
    padding: 8rem 0;
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/test.jpg') center/cover;
    opacity: 0.1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-color);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Servicio Destacado */
.featured-service {
    padding: 8rem 0;
    background: var(--background-soft);
    position: relative;
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--gradient-cool);
    opacity: 0.05;
    border-radius: 50%;
}

.service-price {
    background: var(--gradient-warm);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Galería 360 */
.gallery-360 {
    padding: 8rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.gallery-carousel {
    position: absolute;
    width: 300px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    animation: rotate360 20s linear infinite;
}

.gallery-item {
    position: absolute;
    width: 300px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.gallery-item:nth-child(1) { transform: rotateY(0deg) translateZ(250px); }
.gallery-item:nth-child(2) { transform: rotateY(60deg) translateZ(250px); }
.gallery-item:nth-child(3) { transform: rotateY(120deg) translateZ(250px); }
.gallery-item:nth-child(4) { transform: rotateY(180deg) translateZ(250px); }
.gallery-item:nth-child(5) { transform: rotateY(240deg) translateZ(250px); }
.gallery-item:nth-child(6) { transform: rotateY(300deg) translateZ(250px); }

@keyframes rotate360 {
    from { transform: translate(-50%, -50%) rotateY(0deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg); }
}

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

.footer-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

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

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sensorial-card,
    .service-card {
        padding: 2rem;
    }
    
    .gallery-carousel {
        width: 200px;
        height: 150px;
    }
    
    .gallery-item {
        width: 200px;
        height: 150px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Utilidades */
.section-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-warm);
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.text-accent {
    color: var(--accent-color);
}

/* Estilos para páginas adicionales */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-warm);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 6rem 0;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-color);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 107, 0.25);
}

.btn-primary {
    background: var(--gradient-warm);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-info {
    background: var(--background-cream);
    padding: 3rem;
    border-radius: 25px;
    height: 100%;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}