/* Variables CSS */
:root {
    --verde-oscuro: #12492f;
    --azul-petroleo: #0a2f35;
    --naranja-coral: #f56038;
    --amarillo-mostaza: #f7a325;
    --amarillo-claro: #ffca7a;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
}

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

body {
    font-family: 'Quattrocento Sans', sans-serif;
    line-height: 1.6;
    color: var(--azul-petroleo);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant SC', serif;
    font-weight: 600;
}

.font-slabo {
    font-family: 'Slabo 27px', serif;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--verde-oscuro);
    color: var(--blanco);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-banner a {
    color: var(--amarillo-claro);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background: rgba(18, 73, 47, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Cormorant SC', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--amarillo-claro) !important;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--amarillo-claro) !important;
}

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

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

.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%28255, 202, 122, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    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(18, 73, 47, 0.8), rgba(10, 47, 53, 0.6));
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--amarillo-claro);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary:hover {
    background: #e5542e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 96, 56, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--amarillo-claro);
    color: var(--amarillo-claro);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--amarillo-claro);
    color: var(--azul-petroleo);
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: var(--blanco);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amarillo-claro);
    font-family: 'Cormorant SC', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--amarillo-claro);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Secciones generales */
.section-title {
    font-size: 2.5rem;
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Decoraciones de onda */
.wave-decoration {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

.wave-decoration.top {
    top: 0;
    /* transform: rotate(180deg); */
}

.wave-decoration.bottom {
    bottom: 0;
}

/* Sección de experiencia */
.experience-section {
    background: var(--gris-claro);
    position: relative;
}

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

.option-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--blanco);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover,
.option-item.active {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.option-item i {
    font-size: 2rem;
    color: var(--naranja-coral);
    margin-right: 1.5rem;
    min-width: 60px;
}

.option-item h4 {
    color: var(--azul-petroleo);
    margin-bottom: 0.5rem;
}

.option-item p {
    margin: 0;
    color: #666;
}

.experience-preview {
    position: relative;
    background: var(--blanco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-details {
    padding: 2rem;
}

.experience-details h5 {
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
}

/* Servicio estrella */
.featured-service {
    background: var(--blanco);
    padding: 5rem 0;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--amarillo-mostaza);
    color: var(--blanco);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-subtitle {
    color: var(--verde-oscuro);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

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

.feature-item i {
    color: var(--naranja-coral);
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 20px;
}

.service-pricing {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    font-family: 'Cormorant SC', serif;
}

.price-note {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

/* Estilos de vida */
.lifestyle-section {
    background: var(--gris-claro);
    padding: 5rem 0;
}

.lifestyle-card {
    background: var(--blanco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lifestyle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lifestyle-card .card-body {
    padding: 1.5rem;
}

.lifestyle-card h5 {
    color: var(--azul-petroleo);
    margin-bottom: 1rem;
}

.lifestyle-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.lifestyle-tag {
    background: var(--amarillo-mostaza);
    color: var(--blanco);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonios */
.testimonials-section {
    background: linear-gradient(135deg, var(--verde-oscuro), var(--azul-petroleo));
    position: relative;
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--blanco);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h5 {
    color: var(--azul-petroleo);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    color: var(--amarillo-mostaza);
    margin-right: 0.2rem;
}

/* Galería */
.gallery-section {
    background: var(--blanco);
    padding: 5rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 73, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

/* FAQ */
.faq-section {
    background: var(--gris-claro);
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.accordion-button {
    background: var(--blanco);
    color: var(--azul-petroleo);
    font-weight: 600;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--verde-oscuro);
    color: var(--blanco);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--blanco);
    padding: 1.5rem 2rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--azul-petroleo);
    color: var(--blanco);
}

.footer-title {
    font-family: 'Cormorant SC', serif;
    font-size: 1.8rem;
    color: var(--amarillo-claro);
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--verde-oscuro);
    color: var(--blanco);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--naranja-coral);
    color: var(--blanco);
    transform: translateY(-2px);
}

.footer-subtitle {
    color: var(--amarillo-claro);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info {
    margin-top: 1rem;
}

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

.contact-item i {
    color: var(--amarillo-claro);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--amarillo-claro);
}

.footer-divider {
    border-color: var(--verde-oscuro);
    margin: 2rem 0;
}

.footer-copyright {
    color: #ccc;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .option-item {
        flex-direction: column;
        text-align: center;
    }
    
    .option-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-photo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: auto;
        padding-top: 160px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-subtitle {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}



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

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}