/* ------------ RESET BÁSICO ------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

@-webkit-keyframes placeholder-glow {
  50% {
    opacity: .2;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: .2;
  }
}

html {
  scroll-behavior: smooth;
}

.placeholder {
  display: block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: .5;
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  animation: placeholder-glow 2s ease-in-out infinite;
}

:root {
  --primary-color: #10422B;
  --primary-color-light: #4D8D43;
  --secondary-color: #555555;
  --white-color: #fff;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.5;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33%;
  flex: 0 0 8.33%;
  max-width: 8.33%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66%;
  flex: 0 0 16.66%;
  max-width: 16.66%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.3%;
  flex: 0 0 83.3%;
  max-width: 83.3%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}


/* ------------ UTILIDADES ------------ */

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.text-primary {
  color: var(--primary-color);
}

.text-primary-light {
  color: var(--primary-color-light);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-light {
  background-color: var(--primary-color-light) !important;
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.section {
  padding: 4rem 0;
}

.welcome_section_bg {
  width: 100%;
  height: auto;
  min-height: 664px;
  background: url(./images/bg-welcome.png)no-repeat center center;
  background-size: cover;
}

.divide_section_bg {
  width: 100%;
  min-height: 697px;
  background: url(./images/bg-welcome.png)no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.divide_section_bg__layer {
  width: 100%;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgb(240 240 240 / 72%);
  padding: 100px 0;
}

.divide__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  gap: 74px;
}

.divide__content_long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  gap: 58px;
}

.section--gray {
  background-color: #f3f4f6;
}

.text-white {
  color: #fff !important;
  text-align: center;
}

.section__title {
  font-size: clamp(20px, 4vw, 2rem);
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 600;
}

.section__subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #6b7280;
}

.divide__content .divide__content_left {
  width: 50%;
  min-height: 520px;
  position: relative;
}

.divide__content .divide__content_left .w_2 {
  position: absolute;
  top: 20px;
  right: 0;
  width: 62%;
  z-index: 1;
}

.divide__content .divide__content_left .w_2 img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.divide__content .divide__content_right {
  width: 50%;
  height: 100%;
}

.divide__content_long .divide__content_left_solve {
  width: 45%;
}

.divide__content_long .divide__content_right_solve {
  width: 55%;
  position: relative;
}

.divide__content_right_solve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.divide__content_right_solve .s_2 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.divide__content_right_solve .s_2 img {
  margin-top: auto;
}

.divide__content .divide__content_left .w_1 {
  border: 7px solid #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  z-index: 2;
}

.divide__content .divide__content_left .w_1 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.divide__experience {
  position: absolute;
  width: 210px;
  height: 76px;
  padding: 13px;
  border-radius: 4px;
  background-color: #1E714D;
  top: 60%;
}

.divide__experience h1 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.divide__content_right,
.divide__content_left_solve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 17px;
  padding: 25px 0;
  ;
}

.divide__content_right h2,
.divide__content_left_solve h2 {
  font-weight: 500;
  font-size: clamp(18px, 3.4vw, 24px);
}

.divide__content_right h1,
.divide__content_left_solve h1 {
  font-weight: 600;
  line-height: 35px;
  font-size: clamp(24px, 4vw, 32px);
}

.divide__content_right h4,
.divide__content_left_solve h4 {
  font-weight: 400;
  padding: 0 5px;
}

.divide__content_right ul,
.divide__content_left_solve ul {
  list-style: none;
  padding: 0 5px;
}

.divide__content_right ul li,
.divide__content_left_solve ul li {
  margin: 8px 0;
}

.divide__content_right ul li svg,
.divide__content_left_solve ul li svg {
  margin-right: 5px;
}

/* ------------ BOTONES ------------ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  /* Rounded pill shape as seen in modern designs */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background-color: #4D8D43;
  /* Green Accent */
  color: #fff;
  border-color: #4D8D43;
}

.btn--primary:hover {
  background-color: #3a6b33;
  border-color: #3a6b33;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 141, 67, 0.3);
}

.btn--outline-light {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline-light:hover {
  background-color: #fff;
  color: #10422B;
  transform: translateY(-2px);
}

/* ------------ HEADER ------------ */


.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.logo span {
  color: #f59e0b;
}

/* NAV */

.logo__desktop {
  max-width: 140px;
  height: auto;
}

.logo__mob {
  display: none;
}

.logo__unified {
  max-width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo__unified {
    max-width: 100px;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav__list a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__list a:hover {
  color: #111827;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ------------ HERO ------------ */

.hero {
  position: relative;
  min-height: 85vh;
  background: url("./images_projects/img17.jpg") center/cover no-repeat;
  /* New Background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FBFAF7;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* 40-50% opacity dark overlay */
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 2rem;
  /* Reduced from 4rem to pull up */
  padding-bottom: 12rem;
  /* Increased from 8rem to push up */
  /* Space for stats */
  display: flex;
  justify-content: flex-start;
  /* Align Left */
  text-align: left;
}

.hero__text {
  max-width: 800px;
  /* Limit width */
}

.hero__text h1 {
  font-size: clamp(2rem, 4.5vw, 3.0rem);
  /* Large typography - Reduced size */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__text p {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 650px;
  color: #f3f4f6;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  /* White background */
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 3;
}

.hero-stats__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  min-width: 140px;
}

.hero-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #10422B;
  /* Brand Dark Green */
  margin-bottom: 0.2rem;
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0;
}

.hero-stat-separator {
  width: 1px;
  height: 40px;
  background-color: #e5e7eb;
}

@media (max-width: 900px) {
  .hero-stats__grid {
    gap: 2rem;
    justify-content: center;
  }

  .hero-stat-separator {
    display: none;
  }

  .hero-stat-item {
    flex: 0 0 45%;
    /* 2 per row on mobile */
  }
}


/* ------------ CARDS GENERALES ------------ */

.card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 4px 8px rgba(15, 23, 42, 0.03);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.03);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* ------------ PROYECTOS ------------ */

.projects {
  margin-top: 1.5rem;
  background: url("images/fondo_crema.jpg") center/cover no-repeat;
}

.project-card {
  cursor: pointer;
  width: 360px !important;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.project-card__image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* Aquí usarías tus propias imágenes si quieres */
.project-card__image--1 {
  background-image: -o-linear-gradient(315deg, #f59e0b, #f97316);
  background-image: linear-gradient(135deg, #f59e0b, #f97316);
}

.project-card__image--2 {
  background-image: -o-linear-gradient(315deg, #3b82f6, #1d4ed8);
  background-image: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.project-card__image--3 {
  background-image: -o-linear-gradient(315deg, #10b981, #047857);
  background-image: linear-gradient(135deg, #10b981, #047857);
}

.project-card__body {
  padding: 1rem 1.25rem 1.25rem;
}

.project-card__body h3 {
  margin-bottom: 0.25rem;
}

.project-card__body p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ------------ NOSOTROS ------------ */

.about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2fr) 2rem minmax(0, 1.5fr);
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.about__text p {
  margin-bottom: 1rem;
}

.about__list {
  list-style: none;
  color: #4b5563;
}

.about__list li+li {
  margin-top: 0.25rem;
}

.about__stats {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

.stat {
  background-color: #111827;
  color: #f9fafb;
  padding: 1.25rem;
  border-radius: 1rem;
  text-align: center;
}

.stat h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

/* ------------ CONTACTO ------------ */

.contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.3fr) 2rem minmax(0, 1.7fr);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2rem;
}

.contact__info p {
  margin-bottom: 0.25rem;
}

.contact__form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.form__group {
  margin-bottom: 1rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: #f59e0b;
}

/* ------------ FOOTER ------------ */

.footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  background-color: #ffffff;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer__small {
  opacity: 0.8;
}

/* ------------ RESPONSIVE ------------ */

@media (max-width: 768px) {

  .hero__content,
  .about,
  .contact {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .hero__image {
    min-height: 180px;
    margin-top: 1.5rem;
  }

  /* NAV MOBILE */
  .nav__list {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    background-color: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav__list.nav__list--open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .navbar__logo img {
    height: auto;
  }

  .about-cream__text {
    padding: 0 15px;
  }

  .about-cream__image {
    display: none !important;
  }
}

/* ------- TOP BAR ------- */
.topbar {
  background-color: #10422B;
  color: #FBFAF7;
  font-size: 0.9rem;
}

.topbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.4rem 0;
}

/* La topbar debe usar el ancho completo */
.topbar .container {
  max-width: none;
  padding-right: 1rem;
}


.topbar__content {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* cada bloque (whatsapp, correo, redes) alineado */
.topbar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .4rem;
}

.topbar__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .4rem;
  color: #FBFAF7;
  text-decoration: none;
}

.topbar__item a:hover {
  opacity: 0.85;
}

.social-icons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}


/* íconos del texto */
.topbar__item img {
  width: 18px;
  height: 18px;
}

/* contenedor de redes alineado también */
.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .6rem;
}

/* tamaño de los íconos de redes */
.social-icons img {
  width: 20px;
  height: 20px;
}

.footer__contact a {
  color: inherit;
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
}


/* ------- NAVBAR ------- */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.navbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
}

/* MENU */
.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

.navbar__menu a:hover {
  color: #4D8D43;
}

.navbar__menu a {
  text-decoration: none;
  color: #172520;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.navbar__menu a.active {
  color: #4D8D43;
}

/* Navbar normal */
.navbar {
  position: sticky;
  top: 0;
  z-index: 102;
  background: #ffffff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* Contenido normal */
.navbar__content {
  padding: 1rem 0;
  -webkit-transition: padding 0.25s ease;
  -o-transition: padding 0.25s ease;
  transition: padding 0.25s ease;
}

/* Estado reducido al hacer scroll */
.navbar--shrink {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.navbar--shrink .navbar__content {
  padding: 0.5rem 0;
}

.logo__mob {
  display: none;
}


/* BOTÓN CONTACTO */
.btn--contacto {
  background: #4D8D43;
  color: #FBFAF7;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn--contacto:hover {
  background: #1E714D;
}

.topbar__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

/* contenedor de los círculos */
.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.btn_hamburger {
  display: none;
}

/* círculos (placeholders) */
.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #FBFAF7;
  /* blanco suave */
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar__container_mob {
  display: none;
  width: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform ease-in-out .3s;
  transition: -webkit-transform ease-in-out .3s;
  -o-transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s, -webkit-transform ease-in-out .3s;
  position: absolute;
  top: 81px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  -webkit-transform: translateX(-105%);
  -ms-transform: translateX(-105%);
  transform: translateX(-105%);
}

.navbar__mob_menu {
  list-style: none;
}

.navbar__mob_menu li {
  padding: 21px 32px;
}

.navbar__mob_menu li a {
  color: #10422B;
  text-decoration: none;
  font-weight: 600;
}

.navbar__mob_menu li a.active {
  font-weight: 800;
}

.navbar__mob_menu li:not(:last-child) {
  border-bottom: 1px solid rgb(77 141 67 / 33%);
}

.btn_hamburger.active .hamburger {
  display: none;
}

.btn_hamburger .close {
  display: none;
}

.btn_hamburger.active .close {
  display: block;
}

.services__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Tarjeta */
.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2.5rem 1.5rem 2.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}

/* Icono placeholder */
.service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.5rem;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.92rem;
}

/* Botón circular */
.service-card__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #4D8D43;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-top: auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

/* flecha tipo chevron */
.service-card__btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #FBFAF7;
  border-bottom: 3px solid #FBFAF7;
  -webkit-transform: translateX(-1px) rotate(-45deg);
  -ms-transform: translateX(-1px) rotate(-45deg);
  transform: translateX(-1px) rotate(-45deg);
}



.service-card__btn:hover {
  background: #1E714D;
}

/* CTA inferior */
.services__cta {
  margin-top: 2.5rem;
  text-align: center;
}


.services__cta-btn {
  border-radius: 8px;
  background: #1E714D;
}

.services__cta-btn {
  background: #4D8D43;
  color: #FBFAF7;
  border: 1px solid #4D8D43;
  border-radius: 8px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
}

.services__cta-btn:hover {
  background: #1E714D;
}

/* Sección "Nuestros servicios" (panel verde + imagen) */
.services-intro {
  padding: 0;
  background: #ffffff;
  /* distinto de la sección anterior */
}

/* grid propio, con ancho máximo pero sin depender de .container */
.services-intro__grid {
  width: 100%;
  margin: 0;
  padding: 0;
  /* sin padding lateral */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55% 0 45%;
  grid-template-columns: 55% 45%;
  /* o minmax(0, 1.3fr) minmax(0, 1fr) */
  gap: 0;
  /* AQUÍ quitamos la separación */
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}


/* Imagen izquierda */
.services-intro__image {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.services-intro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Panel verde derecha */
.services-intro__panel {
  background: url("images/fondo_verde.jpg");
  color: #fbfaf7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* centra verticalmente */
  padding: 3rem 3rem 3.5rem;
  /* aire interior */
  gap: 1.4rem;
}


/* Título y textos */
.services-intro__eyebrow {
  color: #4d8d43;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-intro__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.services-intro__text {
  font-size: 0.95rem;
  color: #e5efe8;
  margin-bottom: 1.4rem;
}

/* Lista de servicios dentro del panel */
.services-intro__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* ítem con icono + texto */
.services-intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9rem;
}


.services-intro__item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.services-intro__item p {
  font-size: 0.9rem;
  color: #d1e2d7;
}


/* Botón "Solicitar cotización" */
.services-panel__btn {
  margin: 2rem auto 0;
  /* centra horizontalmente */
  display: inline-block;
  /* evita que ocupe todo el ancho */

  background: #4d8d43;
  color: #fbfaf7;
  border: 1px solid #4d8d43;
  border-radius: 8px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}


.services-panel__btn:hover {
  background: #1e714d;
  border: 1px solid #1e714d;
}

/* Responsive */
@media (max-width: 900px) {
  .services-intro__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .services-intro__image,
  .services-intro__panel {
    border-radius: 8px;
  }
}

/* ---------- NUESTROS PROYECTOS ---------- */

.projects {
  position: relative;
  padding: 4rem 0 3.5rem;

  background:
    url("images/fondo_crema.jpg") center/cover no-repeat;
  margin-top: 0px
}


.projects__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.projects__eyebrow {
  color: #4d8d43;
  font-weight: 600;
  font-size: 0.9rem;
}

.projects__title {
  font-size: 1.7rem;
  margin: 0.3rem 0;
  color: #172520;
}

.projects__subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Flechas */
.projects__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.projects__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #4d8d43;
  color: #fbfaf7;
  font-size: 1.4rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projects__arrow[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* Carrusel (estático por ahora) */
.projects__carousel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card:hover .project-card__overlay {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.project-card:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.project-card img {
  width: 100%;
  height: 441px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform ease-in-out .3s;
  transition: -webkit-transform ease-in-out .3s;
  -o-transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s, -webkit-transform ease-in-out .3s;
}

/* Card destacada con overlay verde */
/* .project-card--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 66, 43, 0.8);
  } */

.project-card__overlay {
  -webkit-transition: -webkit-transform ease-in-out .3s;
  transition: -webkit-transform ease-in-out .3s;
  -o-transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s, -webkit-transform ease-in-out .3s;
  background: rgba(16, 66, 43, 0.8);
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #fbfaf7;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.project-card__tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.project-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.3rem;
}

.project-card__footer h3 {
  font-size: 1rem;
}

.project-card__plus {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: #4d8d43;
  color: #fbfaf7;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Botón "Explorar proyectos" */
.projects__cta {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.projects__cta-btn {
  background: #4d8d43;
  color: #fbfaf7;
  border: 1px solid #4d8d43;
  border-radius: 8px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
}

.projects__cta-btn:hover {
  background: #1e714d;
  border: 1px solid #1e714d;
}

/* ---------- ASESORÍA EXPERTA (banda con fondo + imagen) ---------- */

.advice {
  position: relative;
  height: 705px;
  color: #fbfaf7;
  background-image: url("./images/bg_project.png");
  background-position: center bottom;
  background-size: 100% 549px;
  background-repeat: no-repeat;
  overflow: visible;
  z-index: 2;
  margin-top: -160px;
}


.advice__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.advice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

.advice_container_info {
  width: 100%;
  max-width: 418px;
}

.advice__panel {
  padding-top: 10.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}



.advice__title {
  font-size: calc(24px 4vw 2rem);
  font-weight: 600;
  margin-bottom: 0.9rem;
  line-height: 129%;
}

.advice__text {
  font-size: 0.98rem;
  color: #e5efe8;
  margin-bottom: 1.7rem;
}

.advice__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.2rem;
}

.advice__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  color: #FFFFFF;
}

/* cuadritos verdes de icono */
.advice__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* textos de contacto */
.advice__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.advice__value {
  font-size: 1rem;
}



/* ---------- Responsive ---------- */


@media (max-width: 900px) {

  .advice {
    margin-top: 0;
    padding: 2.5rem 0 2rem;
    background-position: center top;
  }

  .advice__content {
    max-width: 100%;
    padding: 0 1.5rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .advice__panel,
  .advice__workers {
    min-height: auto;
  }
}

.advice__workers img {
  display: block;
}

.site-footer {
  background: #fbfaf7;
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.4fr) 2rem minmax(0, 1fr) 2rem minmax(0, 1.2fr);
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 2.2rem 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* Columna izquierda */
.footer__logo {
  height: 100px;
  width: auto;
  display: inline-block;
}


.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1rem;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.footer__social-circle {
  width: 30px;
  height: 30px;
  color: #4d8d43;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Columna central */
.footer__links h4,
.footer__contact h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #10422B;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 1rem;
}

.footer__links a {
  font-size: 1rem;
  color: #10422B;
  text-decoration: none;
  padding-left: 1rem;
  position: relative;
  font-weight: 600;
}

.footer__links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #10422B;
}

/* Columna derecha: CONTÁCTANOS */
.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: #374151;
  margin-bottom: 0.4rem;
}

.footer__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
}




/* Franja inferior */
.footer__bottom {
  background: #10422b;
  color: #fbfaf7;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.7rem 1rem;
}

/* Tamaño manual del icono dentro del cuadrito */
.footer__contact-icon img {
  width: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}


/* Responsive */
@media (max-width: 900px) {
  .footer__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* header de la sección */
.projects__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

/* contenedor de flechas */
.projects__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

/* botón circular base */
.projects__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #4D8D43;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* chevron (flecha) */
.projects__arrow::before {
  content: "";
  width: 16px;
  height: 26px;

}

/* flecha izquierda */
.projects__arrow--prev::before {
  background-image: url(./images/arrow_prev.svg);
  margin-right: 4px;
}

/* flecha derecha */
.projects__arrow--next::before {
  background-image: url(./images/arrow_next.svg);
  margin-left: 4px;
}

/* hover */
.projects__arrow:hover {
  background: #1E714D;
}

/* HOVER botones del HERO */
.hero-btn--light:hover {
  background-color: #4D8D43;
  color: #FBFAF7;
  border-color: #4D8D43;
}

.navbar__logo a,
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.arrow-benefits-prev {
  top: 174px;
  z-index: 100;
  left: 0;
}

.arrow-benefits-next {
  top: 174px;
  z-index: 100;
  right: 0;
}

.benefits_wrapper_container {
  padding: 0 20px !important;
}

/* styles2.css */
.page-hero {
  position: relative;
  height: 260px;
  background: url("banner_quienes.jpg") center/cover no-repeat;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 66, 43, 0.65);
}

.page-hero h1 {
  position: relative;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

/* ======================
   HERO QUIÉNES SOMOS
   ====================== */

.about-hero {
  position: relative;
  height: 260px;
  /* ajusta si lo quieres más alto */
  background: url("images/banner_1.jpg") center / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__content {
  position: relative;
  text-align: center;
  color: #FBFAF7;
  height: 100%;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-hero__content h1 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.about-hero__content p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ======================
   CONTENIDO QUIÉNES SOMOS
   ====================== */

.about-content {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
  text-align: center;
}

/* Eyebrow */
.about-eyebrow {
  color: #4D8D43;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Título principal */
.about-content h2 {
  font-size: clamp(20px, 3vw, 2.4rem);
  font-weight: 600;
  color: #172520;
  margin-bottom: 1.6rem;
}

/* Párrafos */
.about-content p {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

/* ======================
     CARDS: MISIÓN / VISIÓN / VALORES
     ====================== */

.about-cards {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.6rem minmax(0, 1fr) 1.6rem minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* Card individual */
.about-card {
  background: #FBFAF7;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  -o-transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.about-card:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 30px rgba(16, 66, 43, 0.12);
  box-shadow: 0 12px 30px rgba(16, 66, 43, 0.12);
}

/* Título de card */
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E714D;
  margin-bottom: 0.6rem;
}

/* Texto de card */
.about-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ======================
     RESPONSIVE
     ====================== */

@media (max-width: 900px) {
  .about-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 3.5rem 0 4rem;
  }
}

/* FIX colores (poner al FINAL del styles2.css) */
.about-content .about-eyebrow {
  color: #4D8D43 !important;
}

.about-content h2 {
  color: #10422B;
  /* o #1E714D si lo quieres más verde */
}

/* ======================
   SECCIÓN INTRO CON FONDO
   ====================== */

.about-intro {
  position: relative;
  padding: 5.5rem 0 6rem;
  text-align: center;

  background-image: url("images/fondo_crema.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.about-intro__content {
  max-width: 900px;
  margin: 0 auto;
}

/* Reutilizamos estilos existentes */
.about-intro h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #172520;
  margin-bottom: 1.6rem;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.2rem;
}

/* =========================
   SECCIÓN 2 (CREMA) - SOLO ESTA TIENE images/fondo_crema.jpg
   ========================= */
.about-cream {
  padding: 5.5rem 5.5rem 0 5.5rem;
  background: url("images/fondo_crema.jpg") center/cover no-repeat;
}

.about-cream__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.1fr) 3rem minmax(0, 0.9fr);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-cream__eyebrow {
  color: #4D8D43;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 20px;
}

.about-cream__title {
  color: #10422B;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about-cream__desc {
  color: #4b5563;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.about-cream__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: -ms-grid;
  display: grid;
  gap: 0.85rem;
}

.about-cream__list li {
  position: relative;
  padding-left: 2rem;
  color: #374151;
  line-height: 1.5;
}

.about-cream__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4D8D43;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.about-cream__btn {
  background: #4D8D43;
  color: #fff;
  padding: 0.95rem 1.6rem;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: -webkit-transform .2s ease, -webkit-filter .2s ease;
  transition: -webkit-transform .2s ease, -webkit-filter .2s ease;
  -o-transition: transform .2s ease, filter .2s ease;
  transition: transform .2s ease, filter .2s ease;
  transition: transform .2s ease, filter .2s ease, -webkit-transform .2s ease, -webkit-filter .2s ease;
}

.about-cream__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
}

.about-cream__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* .about-cream__image img{
    width: min(520px, 100%);
    height: auto;
    display: block;
  } */

@media (max-width: 900px) {
  .about-cream {
    padding: 4rem 0;
  }

  .about-cream__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-cream__image {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-cream__desc {
    max-width: 100%;
  }
}


/* =========================
     SECCIÓN 3 (VERDE) - FULL WIDTH + images/fondo_verde.jpg
     ========================= */
.about-green {
  width: 100%;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  font-family: inherit;
}

.about-green__left {
  overflow: hidden;
}

.about-green__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.about-green__right {
  background: url("images/fondo_verde.jpg") center/cover no-repeat;
  color: #FBFAF7;
  padding: 5rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-green__eyebrow {
  color: #4D8D43;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-green__title {
  font-size: clamp(22px, 3vw, 24px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 1.2rem;
  color: #FBFAF7;
}

.about-green__text {
  max-width: 620px;
  margin: 0 0 2rem;
  color: rgba(251, 250, 247, 0.85);
  line-height: 1.7;
}

.about-green__accordion {
  display: -ms-grid;
  display: grid;
  gap: 1.2rem;
  max-width: 640px;
}

.about_accordion_container {
  background: rgba(251, 250, 247, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 26px;
  border-radius: 10px;
  max-height: 63px;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.about_accordion_content {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.about_accordion_content p {
  margin-top: 10px;
  color: #555555;
}

.about-green__item {
  outline: none;
  border: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  font: inherit;
  color: #10422B;
  font-weight: 700;
  text-align: left;
}

.about-green__plus {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #4D8D43;
  color: #FBFAF7;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .about-green {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-green__left {
    height: 380px;
  }

  .about-green__right {
    padding: 3.2rem 1.6rem;
  }
}

/* =========================
   SECCIÓN BENEFICIOS (fondo crema)
   ========================= */

.about-benefits {
  padding: 5.5rem 0 6rem;
  background: url("images/fondo_crema.jpg") center / cover no-repeat;
  text-align: center;
}

.about-benefits__eyebrow {
  color: #4D8D43;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.about-benefits__title {
  color: #10422B;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  line-height: 1.25;
}

/* Grid de cards */
.about-benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 2.2rem minmax(0, 1fr) 2.2rem minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

/* Card */
.about-benefits__card {
  background: #ffffff;
  width: 410px;
  height: 338px !important;
  border-radius: 14px;
  padding: 2.8rem 1.5rem;
  -webkit-box-shadow: 0px 1px 0px rgba(16, 66, 43, 0.08);
  box-shadow: 0px 1px 0px rgba(16, 66, 43, 0.08);
  text-align: center;
}

.swiper-free-mode>.swiper-wrapper {
  padding: 25px 0;
}

.about-benefits__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.about-benefits__icon img {
  width: 100%;
  height: auto;
}

.about-benefits__card h3 {
  color: #4D8D43;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0.6rem;
}

.about-benefits__card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-benefits {
    padding: 4rem 0;
  }

  .about-benefits__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECCIÓN INDICADORES (BANNER)
   ========================= */

.about-stats {
  position: relative;
  width: 100%;
  padding: 4.5rem 0;
  background: url("images/banner_2.jpg") center / cover no-repeat;
}

/* Overlay verde */
.about-stats__overlay {
  position: absolute;
  inset: 0;
}

/* Contenido */
.about-stats__container {
  position: relative;
  margin: 0 auto;
  padding: 0 2rem;

  display: -ms-grid;

  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

/* Item */
.about-stats__item img {
  width: 42px;
  height: auto;
  margin-bottom: 0.8rem;
}

.about-stats__item h3 {
  color: #FBFAF7;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 0.2rem;
  text-wrap-mode: nowrap;
}

.about-stats__item p {
  color: rgba(251, 250, 247, 0.85);
  font-size: 1rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-stats__container {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.about-hero2 {
  position: relative;
  height: 260px;
  /* ajusta si lo quieres más alto */
  background: url("images/banner_servicios.jpg") center / cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-hero__overlay2 {
  position: absolute;
  inset: 0;
}

.about-content2 {
  padding: 4.5rem 0 5rem;
  background: url("images/fondo_crema.jpg") center/cover no-repeat;
  text-align: center;
}


/* =========================
   SERVICIOS – FONDO CREMA
   ========================= */

.services-cream {
  padding: 88px 0 104px;
  background: url("images/fondo_crema.jpg") center center / cover no-repeat;
  text-align: center;
}

.services-cream__eyebrow {
  color: #4D8D43;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 14px;
}

.services-cream__title {
  font-size: 42px;
  font-weight: 800;
  color: #10422B;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-cream__subtitle {
  max-width: 820px;
  margin: 0 auto 56px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}

/* GRID */
.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr 36px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;

  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  /* más suave */
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  -o-transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}


.service-card:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 18px 40px rgba(16, 66, 43, 0.18);
  box-shadow: 0 18px 40px rgba(16, 66, 43, 0.18);
}

.service-card img {
  width: 100%;
  height: 190px;
  /* se mantiene */
  -o-object-fit: cover;
  object-fit: cover;
  display: block;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}



.service-card h3 {
  font-size: 16px;
  /* antes 17px */
  font-weight: 800;
  color: #10422B;
  margin: 16px 16px 6px;
  /* ⬅ menos espacio */
}

.service-card p {
  font-size: 14px;
  /* antes 15px */
  color: #4b5563;
  line-height: 1.55;
  margin: 0 16px 20px;
  /* ⬅ menos alto */
}


/* =========================
     RESPONSIVE (PX)
     ========================= */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-cream__title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .services-cream {
    padding: 64px 0 80px;
  }

  .services-cream__title {
    font-size: 30px;
  }

  .service-card img {
    height: 210px;
  }
}

/* === FIX: forzar que las cards se vean (por overrides globales) === */
.services-cream .container {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

.services-cream .services-grid {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 36px 1fr 36px 1fr !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 36px !important;
}

.services-cream .service-card {
  display: block !important;
  width: 100% !important;
  background: #ffffff !important;
}

/* Responsive */
@media (max-width: 1000px) {
  .services-cream .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .services-cream .services-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}


/* Quitar el panel blanco dentro de servicios */
.services-cream .about-content {
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Por si el blanco viene del container */
.services-cream .container {
  background: transparent !important;
}

/* =========================
   SERVICIOS - QUÉ HACEMOS (VERDE + ACORDEÓN + FOTOS)
   ========================= */

.services-what {
  background: #10422B;
  /* verde en TODA la sección */
  background-image: url("bg_lineas_verde.png");
  /* si tienes el patrón, si no, borra esta línea */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  /* antes 80px, para que el navbar no tape */
  padding-bottom: 80px;
}

.services-what .container {
  background: transparent !important;
}

.services-what__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

/* IZQUIERDA */
.services-what__left {
  width: 54%;
}

.services-what__eyebrow {
  color: #6FBF6A;
  /* verde clarito */
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.services-what__title {
  color: #ffffff;
  font-size: 44px;
  line-height: 52px;
  font-weight: 800;
  margin: 0 0 16px 0;
}

.services-what__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 26px 0;
  max-width: 520px;
}

/* ACORDEÓN (reutiliza tus clases, pero lo aterrizamos a este layout) */
.services-what__accordion {
  max-width: 620px;
}

/* Botón estilo Figma */
.services-what .about-green__item.accordion {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  background: #F4F4F4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;

  padding: 18px 20px;
  cursor: pointer;

  font-size: 16px;
  font-weight: 800;
  color: #10422B;

  margin: 0;
}

.flex-direction-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.services-what .about_accordion_container {
  margin-bottom: 14px;
}

/* El cuadrito del + */
.services-what .about-green__plus {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #4D8D43;
  color: #ffffff;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

/* Contenido del acordeón */
.services-what .about_accordion_content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.28s ease;
  -o-transition: max-height 0.28s ease;
  transition: max-height 0.28s ease;
  background: #F4F4F4;
  border-radius: 12px;
  margin-top: 10px;
  padding: 0 20px;
  /* se activa con open */
}

.services-what .about_accordion_content p {
  margin: 14px 0 16px 0;
  color: #5B6472;
  font-size: 14px;
  line-height: 22px;
}

/* Open state */
.services-what .about_accordion_content.open {
  padding: 0 20px;
}

/* DERECHA (FOTOS) */
.services-what__right {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.services-what__photos {
  width: 560px;
  height: 460px;
  position: relative;
}

.services-what__photo {
  border-radius: 18px;
  overflow: hidden;
}

.services-what__photo--big {
  width: 320px;
  height: 430px;
  position: absolute;
  top: 0;
  left: 0;
}

.services-what__photo--small {
  width: 280px;
  height: 380px;
  position: absolute;
  top: 90px;
  /* baja la chica */
  right: 0;
  /* a la derecha */
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-what__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .services-what__left,
  .services-what__right {
    width: 100%;
  }

  .services-what__photos {
    width: 100%;
    max-width: 520px;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .services-what {
    padding: 60px 0;
  }

  .services-what__title {
    font-size: 34px;
    line-height: 42px;
  }

  .services-what__photos {
    height: 420px;
  }

  .services-what__photo--big {
    width: 260px;
    height: 380px;
  }

  .services-what__photo--small {
    width: 220px;
    height: 320px;
    top: 80px;
  }
}

/* ==== FIX acordeón: look Figma (sin doble borde / sin panel interno raro) ==== */
.services-what .about_accordion_container {
  margin-bottom: 16px;
}

.services-what .about-green__item.accordion {
  background: #F5F5F5 !important;
  border: 1px solid rgba(0, 0, 0, 0.10) !important;
  border-radius: 12px !important;

  padding: 18px 22px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;

  font-size: 16px !important;
  font-weight: 800 !important;
  color: #10422B !important;
}

/* el contenido NO debe parecer “otra tarjeta” dentro */
.services-what .about_accordion_content {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;

  margin-top: 10px;
  padding: 0 2px !important;

  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.28s ease;
  -o-transition: max-height 0.28s ease;
  transition: max-height 0.28s ease;
}

/* el contenido abierto: solo texto debajo, como Figma */
.services-what .about_accordion_content.open {
  max-height: 260px;
  /* suficiente */
}

.services-what .about_accordion_content p {
  background: #F5F5F5;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;

  padding: 14px 18px;
  margin: 0;

  color: #5B6472;
  font-size: 14px;
  line-height: 22px;
}

/* cuadrito del + */
.services-what .about-green__plus {
  width: 44px !important;
  height: 44px !important;
  border-radius: 6px !important;
  background: #4D8D43 !important;
  font-size: 26px !important;
}

/* ===== SECCIÓN VERDE (full width) ===== */
.services-what.about-green {
  width: 100%;
  background: #0E3E2A;
  /* verde */
  padding: 70px 0 70px;
  border-radius: 0;
}

/* layout igual Figma */
.services-what {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.services-what__left {
  width: 520px;
  padding-right: 60px;
}

.services-what__right {
  width: 620px;
}

/* ===== texto (similar Figma) ===== */
.services-what .about-green__eyebrow {
  color: #6FAE5E;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.services-what .about-green__title {
  color: #ffffff;
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  margin: 0 0 18px;
}

.services-what .about-green__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 26px;
  max-width: 440px;
}

/* ===== acordeón look Figma ===== */
.services-what .about_accordion_container {
  margin-bottom: 14px;
}

.services-what .about-green__item.accordion {
  width: 100%;
  background: #F3F3F3;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;

  padding: 18px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  font-size: 16px;
  font-weight: 800;
  color: #10422B;

  cursor: pointer;
}

/* cuadrito + / - */
.services-what .about-green__plus {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #4D8D43;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

/* contenido (cerrado/abierto) */
.services-what .about_accordion_content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.28s ease;
  -o-transition: max-height 0.28s ease;
  transition: max-height 0.28s ease;
}

.services-what .about_accordion_content p {
  margin: 10px 0 0;
  background: #F3F3F3;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;

  padding: 14px 16px;
  color: #5B6472;
  font-size: 14px;
  line-height: 22px;
}

/* ===== fotos igual Figma ===== */
.services-what__photos {
  position: relative;
  width: 560px;
  height: 460px;
}

.services-what__photo {
  border-radius: 18px;
  overflow: hidden;
}

.services-what__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.services-what__photo--big {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 430px;
}

.services-what__photo--small {
  position: absolute;
  top: 90px;
  right: 0;
  width: 280px;
  height: 380px;
}

/* responsive */
@media (max-width: 1100px) {
  .services-what {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 0;
  }

  .services-what__left {
    width: 90%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .services-what__right {
    width: 90%;
  }

  .services-what__photos {
    width: 520px;
    height: 440px;
  }
}

@media (max-width: 600px) {
  .services-what__photos {
    width: 320px;
    height: 420px;
  }

  .services-what__photo--big {
    width: 240px;
    height: 320px;
  }

  .services-what__photo--small {
    width: 220px;
    height: 280px;
    top: 120px;
  }
}

/* ===============================
   QUÉ HACEMOS
   =============================== */

.what-we-do {
  background-color: #0f3d2a;
  padding: 96px 0;
  color: #ffffff;
}

.what-we-do__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 64px 0.9fr;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* TEXTO */
.what-we-do__eyebrow {
  color: #7cc36a;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.what-we-do__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.what-we-do__text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ACORDEÓN */
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #ffffff;
  color: #10422B;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.accordion-header .icon {
  background: #4D8D43;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}

.accordion-content {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.accordion-item:not(.active) .accordion-content {
  display: none;
}

/* IMÁGENES */
.what-we-do__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.what-we-do__images img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .what-we-do__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .what-we-do__images {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .what-we-do__images {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .what-we-do__title {
    font-size: 32px;
  }
}

/*sdsada*/

.offer-tabs {
  padding: 96px 0 90px;
  background: #ffffff;
  text-align: center;
}

/* Encabezado */
.offer-tabs__eyebrow {
  color: #4D8D43;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
}

.offer-tabs__title {
  color: #10422B;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 auto 34px;
  max-width: 980px;
  font-family: "Manrope", sans-serif;
}

/* Tabs */
.offer-tabs__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto 36px;
}

.offer-tabs__tab {
  border: none;
  cursor: pointer;
  padding: 18px 18px;
  border-radius: 8px;
  background: #F3F1EA;
  color: #2C6B45;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  -webkit-transition: background 160ms ease, color 160ms ease, -webkit-transform 160ms ease;
  transition: background 160ms ease, color 160ms ease, -webkit-transform 160ms ease;
  -o-transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, -webkit-transform 160ms ease;
}

.offer-tabs__tab:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.offer-tabs__tab.is-active {
  background: #4D8D43;
  color: #ffffff;
}

/* Panel */
.offer-tabs__panel {
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}

.offer-tabs__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.15fr 64px 0.85fr;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Imagen */
.offer-tabs__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff !important;
}

.offer-tabs__media img {
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
  object-fit: contain;
  /* 👈 CLAVE */
  display: block;
}


.offer-tabs__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 86px;
  background: #4D8D43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

/* Texto derecha */
.offer-tabs__heading {
  color: #10422B;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
}

.offer-tabs__text {
  color: #5b5f66;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 420px;
  font-family: "Manrope", sans-serif;
}

.offer-tabs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  font-family: "Manrope", sans-serif;
}

.offer-tabs__list li {
  position: relative;
  padding-left: 30px;
  color: #5b5f66;
  font-size: 16px;
  line-height: 1.5;
}

.offer-tabs__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4D8D43;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .offer-tabs__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-tabs__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .offer-tabs__media img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .offer-tabs {
    padding: 74px 0 70px;
  }

  .offer-tabs__title {
    font-size: 30px;
  }

  .offer-tabs__nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .offer-tabs__media img {
    height: 300px;
  }
}

.offer-tabs__badge {
  display: none;
}

/* ==========================
   CONTACTO
========================== */

.contacto {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #ffffff;
}

/* Banner */
.contacto-banner {
  height: 280px;
  background-image: url("images/banner_contacto.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contacto-banner::after {
  content: "";
  position: absolute;
  inset: 0;
}

.contacto-banner h1 {
  position: relative;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* Contenido */
.contacto-contenido {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

/* Info */
.contacto-info {
  width: 50%;
}

.contacto-eyebrow {
  color: #4f8f3e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contacto-info h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #555555;
  margin-bottom: 20px;
}

.contacto-texto {
  font-size: 16px;
  line-height: 26px;
  color: #555555;
  margin-bottom: 40px;
}

/* Items */
.contacto-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contacto-item img {
  width: 36px;
  height: 36px;
}

.contacto-item strong {
  display: block;
  font-size: 16px;
  color: #2b2b2b;
}

.contacto-item span {
  font-size: 15px;
  color: #555555;
}

/* Mapa */
.contacto-mapa {
  width: 50%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.contacto-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.solve-images-only {
  height: 680px;
  /* ← CLAVE */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.solve-images-only .divide__content_right_solve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  max-width: 520px;
  width: 100%;
  gap: 24px;
  /* 👈 AQUÍ el espacio entre imágenes */
}

.solve-images-only .s_1 img {
  display: block;
}

.solve-images-only .s_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.solve-images-only .s_2 img {
  margin-top: auto;
  /* ← la magia */
}

.solve-images-only img {
  border-radius: 12px;
  /* curva suave */
}

.about-project-content {
  padding: 38px 52px;
}

.about-project-content p {
  color: var(--primary-color-light);
  font-size: clamp(16px, 4vw, 28px);
  font-weight: 600;
  text-align: center;
}

.tabs__project_tabs {
  margin-top: 36px !important;
}

.tab__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.tab__info {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.tab__info img {
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  -o-object-fit: cover;
  object-fit: cover;
}

.tab__info:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.tab__info:hover .project-card__overlay {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.tab__content_container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.tab__content_container.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail_content {
  padding: 46px;
}

.project__detail_title {
  font-size: clamp(20px, 4vw, 24px);
  color: #10422B;
  margin-bottom: 40px;
}

.project__detail_background {
  width: 100%;
  height: 563px;
  border-radius: 4px;
  margin-bottom: 51px;
  background-size: cover;
}

.project__detail_parraph {
  color: #555555;
}

.project__detail_card {
  width: 490px;
  height: 370px;
  border-radius: 4px;
  padding: 21px 24px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  float: right;
  margin-right: 30px;
  margin-left: 25px;
  margin-top: -120px;
  background-color: #fff;
}

.project__detail_card_title {
  font-size: clamp(20px, 4vw, 24px);
  color: #4D8D43;
  font-weight: 700;
}

.project__detail_card_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 35px;
}

.project__detail_card_title_sm {
  font-size: clamp(14px, 4vw, 16px);
  color: #10422B;
  font-weight: 700;
  margin-bottom: 5px;
}

.project__detail_card_title_subsm {
  font-size: clamp(14px, 4vw, 16px);
  color: #555555;
  font-weight: 700;
}

.project__detail_card_minicontainer {
  width: 48%;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    display: block;
  }

  .hero__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero__text h1 {
    font-size: 1.75rem;
    /* Reduced from 2rem min */
    line-height: 1.2;
  }

  .hero-stats {
    position: relative;
    padding: 2rem 1rem;
    background: #fff;
  }

  .hero__image {
    display: none;
  }

  .navbar__menu {
    display: none;
  }

  .logo__desktop {
    display: none;
  }

  .logo__mob {
    display: block;
  }

  .topbar__item a span {
    display: none;
  }

  .topbar__item a {
    border-right: 1px solid #fff;
    padding-right: 10px;
  }

  .topbar__content {
    gap: 10px;
  }

  .btn_header {
    display: none;
  }

  .btn_hamburger {
    display: block;
  }

  .navbar__content {
    padding: 16px;
  }

  .divide__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .divide__content .divide__content_left {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }

  .divide__content .divide__content_right {
    width: 100%;
    padding: 0 16px;
  }

  .divide__content_left .w_2 {
    display: none;
  }

  .divide__content .divide__content_left .w_1 {
    position: relative;
  }

  .welcome_section_bg {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .divide__content {
    height: auto;
  }

  .divide__experience {
    top: unset;
    bottom: 0;
    left: 25%;
  }

  .divide_section_bg__layer {
    padding: 58px 0 0px 0;
  }

  .divide_section_bg {
    height: 100%;
  }

  .services {
    background: #FBFAF7;
    padding: 4rem 0 3rem;
  }

  .divide__content_long .divide__content_left_solve {
    width: 100%;
    padding: 0 16px 25px 16px;
  }

  .divide__content_long .divide__content_right_solve {
    display: none;
  }

  .services-intro__image {
    display: none;
  }

  .services-intro__panel {
    border-radius: 0 !important;
    padding: 48px 25px !important;
  }

  .projects__controls {
    display: none !important;
  }

  .projects__cta {
    margin-top: 25px !important;
  }

  .advice__workers {
    display: none;
  }

  .advice__panel {
    padding-top: 0 !important;
  }

  .advice {
    height: 100% !important;
  }

  .footer__content {
    padding-left: 33px !important;
    padding-right: 33px !important;
  }

  .navbar__container_mob {
    display: block;
  }

  .navbar__container_mob.active {
    -webkit-transform: translateX(-4%);
    -ms-transform: translateX(-4%);
    transform: translateX(-4%);
  }

  .solve-images-only {
    display: none !important;
  }

  .detail_content {
    padding: 23px 16px;
  }

  .project__detail_card {
    float: none;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
  }

  .project__detail_card_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .project__detail_card_title_subsm {
    margin-bottom: 5px;
  }

  .project__detail_card_minicontainer {
    width: 100%;
  }

  .contacto-contenido {
    padding: 23px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacto-info,
  .contacto-mapa {
    width: 100%;
  }

  .about-hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about-hero,
  .about-hero2,
  .contacto-banner {
    height: 78px;
  }

  .about-project-content {
    padding: 28px 17px;
  }

  .tab__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33%;
    flex: 0 0 8.33%;
    max-width: 8.33%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66%;
    flex: 0 0 66.66%;
    max-width: 66.66%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3%;
    flex: 0 0 83.3%;
    max-width: 83.3%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }
}

.services {
  padding-top: 40px;
  padding-bottom: 60px;
}

.final-block-message {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10422B;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-style: italic;
}

@media (max-width: 768px) {

  /* Restablecer auto alturas */
  .welcome_section_bg {
    height: max-content;
  }

  .divide_section_bg__layer {
    padding: 58px 0 0px 0;
  }

  /* El diseño cambia para pasar las imágenes abajo o arriba del texto (en este caso arriba gracias al reverse) */
  .divide__content {
    flex-direction: column-reverse;
    height: auto;
  }

  /* Se adapta la caja izquierda y la derecha a tamaños móviles */
  .divide__content .divide__content_left {
    width: max-content;
    margin: auto;
    min-height: auto;
  }

  .divide__content .divide__content_right {
    width: 100%;
    padding: 0 16px;
  }

  /* Oculta la imagen base para ahorrar espacio en móvil */
  .divide__content_left .w_2 {
    display: none;
  }

  /* La imagen flotante pasa a posición normal. */
  .divide__content .divide__content_left .w_1 {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Reposicionar la cajita verde sobre la imagen conservada */
  .divide__experience {
    top: unset;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}