/* 🎨 Paleta de colores naturales en tonos pasteles */
:root {
    --verde-suave: #A8C686;
    --verde-oscuro: rgb(81 109 65 / var(--tw-text-opacity, 1));
    --marron-tierra: #C7A17A;
    --ocre-suave: #E4B363;
    --beige-cálido: #E8D8C4;
    --gris-suave: #7D7D7D;
    --blanco-suave: #F6F1E9;
}

/* 🌿 Estilos Globales */
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--beige-cálido);
    color: var(--verde-oscuro);
    letter-spacing: 0.1em;
}

/* 🌿 Navbar */
.navbar {
    background: transparent !important;
    position:absolute;
    width: 100%;
    padding: 0px;
}
.navbar a {
    color: var(--blanco-suave) !important;
    transition: color 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;       /* text-sm */
    font-weight: 500;      /* font-medium */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    text-shadow:1px 1px 2px rgba(0,0,0,1);
}
.navbar a:hover {
    color: var(--ocre-suave) !important;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* 🌿 Hero Section */
#inicio {
    background: url('../images/ventolerainicio3.webp') center center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* 🌿 Secciones Generales */
.section {
    padding: 80px 20px;
    text-align: center;
}
.section:nth-child(even) {
    background: var(--verde-suave);
    color: var(--blanco-suave);
}

/* 🌿 Botones */
.btn-primary {
    --tw-bg-opacity: 1;
    background: rgb(171 103 75 / var(--tw-bg-opacity, 1));
    border: none;
    border-radius: 44px;
    font-size: 15px;
    padding: 10px 20px;
}
.btn-primary:hover {
    background: rgb(184 127 90 / var(--tw-bg-opacity, 1));
}
.btn-success {
    background: var(--verde-oscuro);
    border: none;
}
.btn-success:hover {
    background: var(--marron-tierra);
}

/* 🌿 Sobre Nosotros */
#sobre-nosotros {
    background: rgb(245 238 232) !important;
    padding: 80px 0;
}
#sobre-nosotros h2,
#sobre-nosotros h5 {
    color: var(--verde-oscuro) !important;
}
#sobre-nosotros .text-muted {
    color: var(--gris-suave);
}
#sobre-nosotros img {
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 🌿 Servicios */
#servicios {
    background: rgb(245 238 232) !important;
}
#servicios a {
    color: var(--verde-oscuro) !important;
}
#servicios h2 {
    color: var(--verde-oscuro) !important;
    font-weight: 700;
}
#servicios .col-md-4 {
    background: #efe5d9;
    padding: 20px;
    transition: transform 0.3s ease;
}
#servicios .col-md-4:hover {
    transform: scale(1.05);
}
#servicios img {
    width: 120px;
    margin-bottom: 10px;
}

/* 🌿 Galería */
#galeria {
    background: var(--verde-oscuro);
}
#galeria h2 {
    color: var(--blanco-suave);
    font-weight: 700;
}
#galeria img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}
#galeria img:hover {
    transform: scale(1.05);
}

/* 🌿 Contacto */
#contacto {
    background: rgb(245 238 232) !important;
    box-shadow: inset 0px 10px 15px 0px rgba(139, 69, 19, 0.3);
}
#contacto h2 {
    color: var(--verde-oscuro);
    font-weight: 700;
}
#contacto .form-control {
    border-radius: 0px;
    border:0px;
    border-bottom: 1px solid var(--verde-oscuro);
    background: transparent;
    color: var(--verde-oscuro);
}

/* 🌿 Footer */
.footer {
    background: var(--verde-oscuro) !important;
    color: var(--blanco-suave);
    text-align: center;
    padding: 20px 0;
}
.footer a {
    color: rgb(219 192 170 / var(--tw-text-opacity, 1));
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--blanco-suave);
}
.xzloghq {
    background: #4f6f51 !important;
}
.img-redonda {
    border-radius: 50%; /* Hace que la imagen sea redonda */
    object-fit: cover; /* Ajusta la imagen dentro del círculo sin deformarla */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    transition: transform 0.3s ease-in-out; /* Efecto al pasar el mouse */
}

.img-redonda:hover {
    transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}
.logo-zoom {
    width: 25%;
    animation: zoomIn 1.5s ease-in-out;
}
/* 📱 Ajuste para pantallas menores a 700px */
@media (max-width: 900px) {
    .logo-zoom {
        width: 30%; /* Aumenta el tamaño en pantallas pequeñas */
    }
}
/* 📱 Ajuste para pantallas menores a 700px */
@media (max-width: 700px) {
    .logo-zoom {
        width: 40%; /* Aumenta el tamaño en pantallas pequeñas */
    }
}
@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* --- ESTILOS INSTAGRAM --- */
.insta-card .insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-card:hover img { transform: scale(1.1); }

/* --- ESTILOS GALERÍA LOCAL --- */
.local-gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0; transition: 0.4s;
    backdrop-filter: blur(2px);
}
.local-gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.local-gallery-item:hover img {
    transform: scale(1.05);
}

/* --- AJUSTES MODAL --- */
.carousel-control-prev, .carousel-control-next {
    width: 10%;
}
.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
#whatsappForm {
    width: 80%;
    margin: 0 auto;
}
/* --- ESTILOS TESTIMONIOS --- */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0 !important;
}
.carousel-item {
    padding: 15px;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    border-color: var(--verde-oscuro) !important;
}

.btn-read-more {
    font-size: 0.85rem;
    color:var(--verde-oscuro);; /* O el color primario de tu empresa */
}

.btn-read-more:hover {
    color:var(--marron-tierra);;
    text-decoration: underline !important;
}

.custom-control {
    width: 3%;
    opacity: 0.8;
}

.custom-control:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .custom-control { width: 10%; }
}

/* --- ESTILOS EVENTOS --- */
/* --- LISTA DE EVENTOS COMPACTA --- */
/* --- ESTILOS AGENDA --- */
.event-list-item {
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}
.event-list-item:hover {
    transform: translateX(5px);
    border-left-color: #E1306C;
    background-color: #fdfdfd !important;
}
.event-date-box { min-width: 75px; }
.event-date-box .text-danger { color: #E1306C !important; }

/* --- CONTENIDO DEL MODAL --- */
.evento-descripcion-full {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}
.evento-descripcion-full img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
}
.grayscale-hover {
    transition: 0.3s;
    filter: grayscale(100%);
}
.grayscale-hover:hover {
    filter: grayscale(0%);
}