.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fondo del navbar */
.bg-light-custom {
  background-color: #f9f9f2;
}

/* Links */
.navbar .nav-link {
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
}

.navbar .nav-link:hover {
  color: #006130;
}

.navbar .nav-link.active {
  color: #006130;
  font-weight: 600;
}

/* Botón Consultar */
.btn-consultar {
  background-color: #006130;
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-consultar:hover {
  background-color: #004e26;
  color: #fff;
}

/* Círculo del ícono */
.btn-consultar .icon-circle {
  background-color: #ffffff;
  color: #006130;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================
   Montserrat Font Family
   ============================ */

@font-face {
  font-family: 'Montserrat';
  src: url('../../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #2b2b2b;
}
h1, h2, h3 {
  font-weight: 700;
}

h4, h5 {
  font-weight: 600;
}
/*
p, li {
  font-weight: 400;
}*/

.navbar .nav-link {
  font-weight: 500;
}

.btn {
  font-weight: 600;
}

/* ============================
   Fin Montserrat Font Family
   ============================ */
/* ============================
Estilos de hero section
   ============================ */  
  .hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Imagen */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

/* Overlay verdoso */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 97, 48, 0.75),
    rgba(0, 97, 48, 0.35)
  );
  z-index: 1;
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 640px;
  color: #ffffff;
}

/* Título */
.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* Texto */
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  opacity: 0.95;
}

/* Botones */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* ============================
Estilos de services section
   ============================ */  
/* =========================
   SERVICES INTRO SECTION
   ========================= */

.services-intro {
  background: #FFFEF7;
  margin-top: -80px; /* solapa el hero */
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  padding: 120px 1rem 80px;
  position: relative;
  z-index: 3;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.06);
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARDS */
.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: center;
   box-shadow: 
    0 10px 25px rgba(0,0,0,0.05),
    0 2px 6px rgba(0,0,0,0.03);
}

/* Cards con icono */
.icon-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.icon-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Iconos */
.icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  background: #e6f4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Números grandes */
.value-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a3d24;
  margin-bottom: 0.4rem;
}

.value-label {
  font-size: 0.95rem;
  color: #555;
}
.value-border {
  border: 2px solid #0e100f;
}
/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    margin-top: -40px;
    padding-top: 90px;
  }
}
.services-intro {
  padding: 4rem 1rem 3rem;
  /* color de fondo lo ajustamos luego */
}
/* Contenedor centrado */
.services-intro .container {
  max-width: 900px;
}

/* Badge / botón pequeño */
.services-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #006130;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  margin-top: 15rem;
}

/* Título principal */
.services-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 0.75rem;
}

/* Descripción */
.services-description {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}

/* ============================
   Cards grandes de servicios
   ============================ */

.services-cards {
  padding: 2rem 1rem 5rem;
  background-color: #FFFEF7;
}

/* Card */
.service-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 2.2rem 1.5rem 2.5rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Icono superior */
.service-icon {
  margin-bottom: 1.2rem;
}

.service-icon img {
  width: 56px;
  height: auto;
}

/* Título */
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 0.6rem;
}

/* Badge destacado */
.service-badge.featured {
  display: inline-block;
  background-color: #DEDD26;
  color: #1f1f1f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

/* Lista */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Ítems */
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 0.75rem;
}

/* Check icon */
.service-list img {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

/* ============================
   CTA final Servicios
   ============================ */

.services-cta {
  margin-top: 4rem;
  background-color: #FFFEF7;
}

/* Bloque verde */
.services-cta-content {
  background-color: #0b6b3a;
  color: #FFFEF7;
  display: flex;
  align-items: center;
  position: relative;
}

/* Flecha visual */
.services-cta-content::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #0b6b3a;
  z-index: 2;
}

/* Contenido interno */
.services-cta-inner {
  max-width: 560px;
  padding: 4rem 3rem;
}

/* Título */
.services-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* Texto */
.services-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* Lista */
.services-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.services-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.services-cta-list img {
  width: 18px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Imagen derecha */
.services-cta-image {
  overflow: hidden;
}

.services-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .services-cta-content::after {
    display: none;
  }

  .services-cta-inner {
    padding: 3rem 1.5rem;
  }
}
/* ============================
   Conocenos Section Styles
   ============================ */
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

/* Encabezado */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    background-color: #0b6b3a;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0;
}

.about-subtitle {
    font-size: 18px;
    color: #7a7a7a;
    max-width: 700px;
    margin: auto;
}

/* Contenido */
.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Bloques de texto */
.about-text-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

/* Imagen pequeña (reemplazo del icono) */
.about-image-icon {
    min-width: 48px;
    max-width: 48px;
}

.about-image-icon img {
    width: 100%;
    height: auto;
}

/* Texto */
.about-text-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.about-text-item p {
    margin: 0;
    color: #6f6f6f;
    line-height: 1.6;
    font-size: 16px;
}

/* Imagen principal */
.about-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text-content {
    max-width: 520px;
}


/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 34px;
    }
}
/* Fundadores */
.about-founders {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 60%;
}

.founder-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    text-align: center;
}

.founder-card img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.founder-name {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #0b6b3a;
}
.founder-position {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #090b0a;
    opacity: 0.8;
    font-style: italic;
}


/* ============================
   Contact Section Styles
   ============================ */

.contact-section {
  padding: 100px 20px;
  background-color: #fbfbf4;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* Encabezado */
.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-badge {
  display: inline-block;
  background-color: #0b6b3a;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-title {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.contact-subtitle {
  font-size: 18px;
  color: #8a8a8a;
}

/* Contenido */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Información */
.contact-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
  align-items: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: #e6f3ec;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 50px;
}

/* Formulario */
.contact-form {
  background-color: #fffef4;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  color: #5f5f5f;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background-color: #f3f3ed;
  font-size: 15px;
}

.form-group textarea {
  border-radius: 18px;
  resize: none;
}

.promo-feedback {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
}

.text-success {
  color: #198754;
}

.text-danger {
  color: #dc3545;
}

/* Botón */
.btn-submit {
  margin-top: 20px;
  background-color: #0b9b4c;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #087d3d;
}

.btn-submit .arrow {
  background-color: #ffffff;
  color: #0b9b4c;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 34px;
  }
}

/* ============================
   Contact Section Styles
   ============================ */

.cta-final {
  background-color: #009A4E;
  padding: 80px 20px;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #ffffff;
}

.cta-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

/* Botón */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #009A4E;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f1f1f1;
}

/* Ícono */
.cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #009A4E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 28px;
  }
}

.site-footer {
  background-color: #0b6b3a;
  color: #ffffff;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Branding */
.footer-logo {
  max-width: 180px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social img {
  width: 50px;
  height: 50px;
  background-color: #0f8f4d;
  padding: 8px;
  border-radius: 24%;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: translateY(-3px);
}

/* Links */
.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d9f2e4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Divider */
.footer-divider {
  max-width: 1200px;
  margin: 40px auto 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

.footer-bottom small {
  display: block;
  margin-top: 8px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* ============================
   Fin Contact Section Styles
   ============================ */

   /* ============================
   Animaciones    
    ============================ */
    
    
    
a, button, input, textarea, img, .card, .about-text-item, .founder-card {
    transition: all 0.35s ease;
}
button:hover {
    transform: translateY(-2px);
}

.about-text-item:hover {
    transform: translateY(-4px);
}

.founder-card:hover {
    transform: scale(0.63);
}
html {
    scroll-behavior: smooth;
}

.value-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: all 0.8s ease;
}

.value-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


