/* ======== ESTILO GENERAL ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    /* Fondo casi blanco para un look limpio */
    color: #333;
}

/* ======== BARRA DE NAVEGACIÓN ======== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    /* Fija la barra al hacer scroll */
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #006d3b;
    /* Verde de la marca */
    text-decoration: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #006d3b;
}

.nav-btn {
    background-color: #ffcc00;
    /* Amarillo de la marca */
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #ffb300;
}

/* ======== SECCIÓN HERO ======== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    height: 85vh;
    /* Ocupa el 85% de la altura de la pantalla */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=2070') no-repeat center center/cover;
    background-attachment: fixed;
    /* Efecto parallax */
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-slogan {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: #ffcc00;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background-color: #ffb300;
    transform: translateY(-3px);
}

/* ======== SECCIÓN "SOBRE NOSOTROS" ======== */
.about-section {
    padding: 5rem 5%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: auto;
}

.about-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 8px solid #006d3b;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #006d3b;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ======== FOOTER ======== */
.footer {
    background-color: #006d3b;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer p {
    margin-bottom: 1rem;
}

.socials img {
    width: 25px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.socials img:hover {
    transform: scale(1.15);
}

/* ======== RESPONSIVO (para móviles) ======== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simplificar para un futuro menú de hamburguesa */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
}