:root {
  --verde-principal: #257940;
  --verde-claro: #7fae8b;
  --gris-texto: #333;
  --gris-suave: #f5f5f5;
  --borde-suave: #e0e0e0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gris-texto);
  background-color: #ffffff;
  line-height: 1.6;
}

/* TITULOS */
h1, h2, h3, h4 {
  color: var(--verde-principal);
  font-weight: 600;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.4rem;
}

/* PARRAFOS */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* LINKS */
a {
  color: var(--verde-principal);
  text-decoration: none;
}

a:hover {
  color: var(--verde-claro);
}

/* LISTAS */
ul li {
  margin-bottom: 6px;
}

/* CONTENEDORES */
.section-box {
  background: #fff;
  border: 1px solid var(--borde-suave);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

/* DESTACADOS */
.destacado {
    font-weight: 700;
}

.destacado-box {
  background: var(--gris-suave);
  border-left: 4px solid var(--verde-principal);
  padding: 15px;
  margin: 20px 0;
}

/* BOTONES */
.btn-almendros {
  background-color: var(--verde-principal);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
}

.btn-almendros:hover {
  background-color: var(--verde-claro);
  color: #fff;
}
        .btn-home {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 48px;
            height: 48px;
            background: hsla(216, 60%, 78%, 1);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            z-index: 9999;
        }

    /* colores institucionales */
    :root {
  --almendros-green: #8EA08C;
    }    

    /* botones con colores inst*/
    .btn-almendros {
    background-color: var(--almendros-green);
    color: #fff;
    }

    .border-almendros {
    border-color: var(--almendros-green);
    }


    
    .hero-wrap {
        position: relative;
    }

    .hero-wrap .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 1;
    }

    .hero-wrap .container,
    .hero-wrap .slider-text {
        position: relative;
        z-index: 2;
    }

/*-----------------------------------*/