/* Variables */
:root {
    --color-primary: #32CD32; /* Verde lima */
    --color-accent: #FF8C00; /* Naranja vibrante */
    --color-bg: #f8f9fa; /* Gris claro */
    --color-text: #333;
    --color-light: #fff;
    --color-dark: #000;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* Encabezado */
.main-header {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-title);
    color: var(--color-primary) !important;
    font-weight: 700;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-link {
    color: var(--color-text) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent) !important;
}

/* Hero Carrusel */
.hero-section {
    height: 100vh;
    position: relative;
}

.carousel-inner, .hero-slide {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-family: var(--font-title);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--color-accent);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--color-primary);
}

/* Menú con Overlay */
.menu-section {
    background-color: var(--color-light);
    padding: 6rem 0;
}

.menu-section h2 {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 2.8rem;
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-light);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.menu-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Paquetes */
.packages-section {
    padding: 6rem 0;
}

.packages-section h2 {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 2.8rem;
}

.card {
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, var(--color-light), #fff8e1);
}

.price {
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-success {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    background-color: #28a745;
}

.btn-warning {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    background-color: #e67e22;
}

/* Testimonios */
.testimonials-section {
    background-color: var(--color-bg);
    padding: 6rem 0;
}

.testimonials-section h2 {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 2.8rem;
}

.testimonial-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
}

.testimonial-card h5 {
    color: var(--color-primary);
    font-weight: 600;
}

/* Contacto */
.contact-section {
    padding: 6rem 0;
}

.contact-section h2 {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 2.8rem;
}

.contact-section a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-section a:hover {
    color: var(--color-primary);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Pie */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-light);
}

/* WhatsApp Flotante */
.whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--color-light);
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-float-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

/* Animaciones */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .menu-card img {
        height: 200px;
    }

    .whatsapp-float-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .hero-section {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .menu-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-section {
        height: 60vh;
    }
}