:root {
    --color-primary: #0077be;
    --color-secondary: #f4a460;
    --color-text: #333;
    --color-background: #fff;
}

/* Tour Virtual Styles */
.virtual-tour-container {
    position: relative;
    border: 3px solid var(--color-primary);
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.virtual-tour-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 119, 190, 0.15) !important;
}

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

#virtual-tour .section-title {
    position: relative;
}

#virtual-tour .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Responsive tour virtual */
@media (max-width: 768px) {
    .virtual-tour-container {
        height: 400px !important;
        border-width: 2px;
    }
    
    #virtual-tour .section-title {
        font-size: 1.8rem;
    }
    
    #virtual-tour .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Header y Navegación */
.navbar {
    transition: box-shadow 0.3s ease;
    background-color: white !important;
}

.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link,
.navbar-brand {
    color: var(--color-text) !important;
}

.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%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Estilos generales */
body {
    font-family: 'Raleway', sans-serif;
}

/* Estilos del Hero */
.hero {
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Títulos de Secciones */
.section-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Ajustes para secciones específicas */
#features .section-title,
#gallery .section-title,
#plans .section-title,
#testimonials .section-title,
#faq .section-title {
    margin-bottom: 1rem;
}

/* Estilos para la sección de planes */
#plans .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

#plans .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#plans .card-img-top {
    height: 200px;
    object-fit: cover;
}

#plans .card-body {
    padding: 1.5rem;
}

#plans .card-title {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

#plans ul {
    margin-bottom: 1rem;
}

#plans ul li {
    margin-bottom: 0.5rem;
}

#plans .btn-primary {
    width: 100%;
}

#plans .fw-bold {
    color: var(--color-primary);
}

/* Botones */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #005c91;
    border-color: #005c91;
}

/* Características */
.feature-icon {
    font-size: 3rem;
    color: var(--color-primary);
}

/* Galería */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

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

.gallery-item p {
    margin-top: 10px;
    text-align: center;
}

/* Testimonios */
.testimonial-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* FAQs */
.faq-item {
    border: none;
    background-color: transparent;
}

.faq-question {
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#location .section-subtitle {
    margin-bottom: 2rem;
}

#location a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#location a:hover {
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.social-icons i {
    transition: all 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.2);
}

#key-features {
    background-color: #f8f9fa;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}
