 :root {
            --color-primary: #1e5631;
            --color-primary-light: #2a7d46;
            --color-primary-dark: #164323;
            --color-accent: #a4de02;
            --color-light: #f8f9fa;
            --color-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f6f8;
            color: #333;
        }
        
        .navbar {
            background-color: #193c0ee5;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .navbar-brand {
            font-weight: 100;
            font-size: 1rem;
        }
        
        .navbar-brand img {
            border: 2px solid white;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--color-accent) !important;
        }
        
        .hero-section {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('img/hoja\ 5.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: rgb(255, 255, 255);
        }

         .hero-section h1{
            align-items: center;
            color: rgba(255, 255, 255, 0.779);
            font-size: 300%;
        }
        
        .btn-primary {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--color-primary-light);
            border-color: var(--color-primary-light);
            transform: translateY(-2px);
        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--color-primary);
        }
        
        .section-title {
            color: var(--color-primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
            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-accent);
        }
        
        .feature-icon {
            background-color: rgba(30, 86, 49, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--color-primary);
            font-size: 1.5rem;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-img-top {
            height: 250px;
            object-fit: cover;
        }
        
        .nature-card {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .nature-card:hover {
            transform: translateY(-5px);
        }
        
        .nature-icon {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            background-color: rgba(30, 86, 49, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--color-primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--color-primary);
            color: white;
            font-size: 1.2rem;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--color-primary-light);
            transform: translateY(-3px);
        }
        
        .map-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        footer {
            background-color: var(--color-primary);
            color: white;
            padding: 2rem 0;
        }
        
        .bg-light-green {
            background-color: rgba(164, 222, 2, 0.1);
        }

         /* Estilos para el carrusel */
        .cabana-carousel {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cabana-carousel .carousel-item img {
            height: 450px;
            object-fit: cover;
        }
        
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            padding: 15px;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
        }
        
        .carousel-control-prev, 
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev {
            left: 15px;
        }
        
        .carousel-control-next {
            right: 15px;
        }
        
        .carousel-control-prev:hover, 
        .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
       /* Mejoras para móviles */
@media (max-width: 768px) {
    /* Navbar ajustado */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background-color: var(--color-primary);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0 0 8px 8px;
    }
    
    /* Hero section mejorada para móviles */
    .hero-section {
        height: 70vh;
        padding-top: 80px; /* Compensa navbar fijo */
    }
    
    .hero-section h1 {
        font-size: 1rem;
        margin-top: 55%;
    }
    
    .hero-section .btn {
        width: 90%;
        margin-bottom: 1.5rem;

    }
    
    /* Mejoras para el carrusel en móviles */
    .cabana-carousel .carousel-item img {
        height: 250px;
    }
    
    .carousel-caption {
        bottom: 5px;
        padding: 8px;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .carousel-caption p {
        display: none;
    }
    
    /* Ajustes de secciones */
    .section-title::after {
        width: 60px;
    }
    
    /* Mejoras en las tarjetas */
    .card {
        margin-bottom: 1.5rem;
    }
    
    /* Mejoras en contacto */
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-self: center;
    }
    
    /* Mejoras en el mapa */
    .map-container {
        margin-top: 1.5rem;
    }
    
    /* Ajuste de botones */
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* Mejoras adicionales para pantallas muy pequeñas */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .display-3 {
        font-size: 2.2rem;
    }
    
    /* Ajuste de imágenes en terraza */
    .col-6 {
        width: 100% !important;
    }
    
    .mt-5 {
        margin-top: 1rem !important;
    }
    
    /* Mejora de espaciado general */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        padding: 2rem 0 !important;
    }
    
    /* Textos más legibles */
    .lead {
        font-size: 1rem;
    }
}

/* Mejora de accesibilidad en el menú */
.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--color-accent);
}

/* Smooth scrolling para navegación */
html {
    scroll-behavior: smooth;
}

/* Mejora visual para elementos táctiles */
.btn, .nav-link, .social-icon, .carousel-control-prev, .carousel-control-next {
    transition: all 0.2s ease;
}

.btn:active, .nav-link:active, .social-icon:active {
    transform: scale(0.97);
}