/* 🎨 Paleta de colores naturales en tonos pasteles */
:root {
    --verde-suave: #A8C686;
    --verde-oscuro: #3b523e;
    --marron-tierra: #C7A17A;
    --ocre-suave: #E4B363;
    --beige-cálido: #E8D8C4;
    --gris-suave: #7D7D7D;
    --blanco-suave: #F6F1E9;
}

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

/* 🌿 Navbar */
.navbar {
    background: var(--verde-oscuro) !important;
    position:absolute;
    width: 100%;
    padding: 0px;
}
.navbar a {
    color: var(--blanco-suave) !important;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
.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 {
    background: var(--marron-tierra);
    border: none;
}
.btn-primary:hover {
    background: var(--verde-oscuro);
}
.btn-success {
    background: var(--verde-oscuro);
    border: none;
}
.btn-success:hover {
    background: var(--marron-tierra);
}

/* 🌿 Sobre Nosotros */
#sobre-nosotros {
    background: #EAD8C0 !important;
    padding: 80px 0;
}
#sobre-nosotros h2 {
    color: var(--verde-oscuro);
}
#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: #EAD8C0 !important;
}
#servicios h2 {
    color: var(--verde-oscuro);
    font-weight: 700;
}
#servicios .col-md-4 {
    background: var(--blanco-suave);
    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: #EAD8C0 !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: 8px;
    border: 1px solid var(--verde-oscuro);
    background: var(--blanco-suave);
    color: var(--verde-oscuro);
}
#contacto .btn-primary {
    background: var(--marron-tierra);
    border: none;
}
#contacto .btn-primary:hover {
    background: var(--verde-oscuro);
}

/* 🌿 Footer */
.footer {
    background: var(--verde-oscuro) !important;
    color: var(--blanco-suave);
    text-align: center;
    padding: 20px 0;
}
.footer a {
    color: var(--ocre-suave);
    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;
    }
}