@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


:root{
    --bg: #f5f5f5;
    --a-color: #221a50;
    --btn-bg-color: #4d7b19;
    --time: .2s;
    --radius:2px;

    --title-color:#23261f;
    --info-color:#505630;
    --ni-info-color:rgb(70, 70, 70);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0); /* Transparente */
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0); /* Transparente */
}

.container-fluid{
}

html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
    background-color: var(--bg);
   
}

*{
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}

.separator{
    display: block;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.048);
    width: 100px;
    height: 4px;
}
.location-msg{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    color: #0c0c0c;
}

.location-msg a i{
    padding: 0px 3px;
}

.location-msg a{
  display: flex;
  align-items: center;
  color: rgb(66, 66, 66);
  font-weight: 500;
  transition: all var(--time);
}

.location-msg a:hover{
  color: #943e3e;
}

.location-msg b{
  font-weight: 500;
}

.location-msg strong{
  padding: 0px 10px;
}



/* wsp start */
.wsp-btn-box{
  color: #fff;
  display: flex;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 101121111;
}

.wsp-btn-box a{
  border-radius: 200px;
  box-shadow: 0px 0px 15px 2px #25d3656b;
  background-color:#25d366;
  padding: 8px 20px;
  color: #fff;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--time);
}

.wsp-btn-box a:hover{
  transform: scale(1.1);
}
.wsp-btn-box a i{
  font-size: 1.2em;
  padding-right: 9px;
}
/* wsp end */

/* ------------HEADER-----------START */
.header {
  position: fixed;
  height: 80px;
  width: 100%;
  background-color: rgba(29, 137, 111, 0.9);
  padding: 5px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out;
}

/* LOGO */
.header-logo-a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 26px;
  text-decoration: none;
}

.header-logo-a img {
  height: 50px;
  object-fit: contain;
}

/* LINKS */
.header-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-links-a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.header-links-a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #39ffd1;
  transition: width 0.3s ease;
}

.header-links-a:hover {
  color: #39ffd1;
}

.header-links-a:hover::after {
  width: 100%;
}

/* ACCIONES */
.header-actions {
  display: flex;
  align-items: center;
}

.header-actions a {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #1D896F;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 23px;
  border-radius: 100px;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: all 0.3s ease;
}

.header-actions a:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.header-actions a i {
  transition: color 0.3s ease;
}

.header-actions a:hover i {
  color: #fff;
}

/* RESPONSIVE: MENÚ MÓVIL */
.header-btns {
  display: none;
}

/* SCROLL EFFECT */
.header.scrolled {
  background-color: rgba(29, 137, 111, 0.6);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0.9;
}

.header.scrolled:hover {
  background-color: rgba(29, 137, 111, 0.85);
  opacity: 1;
}
/* ------------HEADER-----------END */


/* ------------FOOTER-----------START */

#footer-title {
  display: none;
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 80px clamp(20px, 5vw, 90px);
  background-color: #f5f7f6;
  font-family: 'Inter', sans-serif;
}

.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 124, 65, 0.2);
  padding: 40px 0;
  gap: 40px;
}

.footer-links {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-links-title {
  color: #0D3C31;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-links-a a {
  display: block;
  color: #0D3C31c0;
  font-size: 16px;
  margin-bottom: 10px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links-a a:hover {
  color: #107C41;
  text-decoration: underline;
}

.footer-links-a a img {
  width: 180px;
  margin-top: 10px;
}

.footer-info-container {
  padding-top: 30px;
}

.footer-social {
  padding-bottom: 30px;
}

.footer-social-ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer-social-li a {
  font-size: 24px;
  color: #107C41;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-li a:hover {
  color: #0d5a2c;
  transform: scale(1.1);
}

.copyright-p {
  font-size: 15px;
  color: #0D3C31a1;
}

.copyright-p a {
  color: #0D3C31;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.copyright-p a:hover {
  color: #107C41;
}

.copyright-p-dev {
  font-size: 15px;
  font-weight: 600;
  color: #0D3C31b4;
  padding-top: 10px;
}

.copyright-p-dev a {
  color: #107C41;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.copyright-p-dev a:hover {
  color: #0d5a2c;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links {
    flex: none;
  }
}
/* ------------FOOTER-----------END */


/* ------------HERO-----------START */
.hero-bg {
  background-image: url("/public/images/hero/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
}

.hero-container {
  background-color: rgba(0, 0, 0, 0.055);
  display: flex;
  flex-wrap: wrap;
  padding: 100px clamp(20px, 5vw, 90px) 60px;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  position: relative;
  z-index: 1;
}

/* Fondo difuminado oscuro opcional */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.6));
  z-index: 0;
}

.hero-text {
  flex: 1 1 600px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 0;
  z-index: 2;
  text-align: center;
  padding-top: 50px;
}

.hero-text-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-tag {
  padding: 10px 22px;
  border-radius: 100px;
  background-color: #ffffffdd;
  color: #0D3C31;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-tag:hover {
  background-color: #0D3C31;
  color: #fff;
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 100%;
  padding: 20px 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  user-select: none;
}

.hero-info {
  color: #f2f2f2;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.hero-link {
  border-radius: 100px;
  padding: 0 26px;
  height: 55px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 6px;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hero-link span {
  transition: transform 0.3s ease;
}

.hero-link:hover,
.hero-link:focus {
  background-color: #107C41;
  border-color: #107C41;
  color: #fff;
  gap: 14px;
  transform: scale(1.05);
}

.hero-link:hover span {
  transform: translateX(4px);
}

/* Responsive ajustado */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .hero-info {
    font-size: 18px;
  }

  .hero-links {
    flex-direction: column;
    gap: 12px;
  }
}


.hero-review {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background-color: #000000b6;
  padding: 20px 25px;
  border-radius: 160px;
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.116);
  max-width: 700px;
  font-family: 'Inter', sans-serif;
}

.hero-review-img {
  height: max-content;
  width: 200px;
  object-fit: cover;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-review-quote {
  font-size: 17px;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.hero-review-caption {
  display: none;
}

@media (max-width: 768px) {
  .hero-review {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .hero-review-img {
    max-width: 200px;
    width: 100%;
    height: max-content;
  }

  .hero-review-quote {
    margin-top: 12px;
  }
}


/* ------------HERO-----------END */


/* ------------SERVICIOS-----------START */

.servicios-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px clamp(20px, 5vw, 90px);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.servicios-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  padding: 0 10px;
}


.servicios-sub-title {
  font-size: 18px;
  color: #0d3c3191;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.servicios-title {
  color: #0D3C31;
  font-size: clamp(26px, 4vw, 36px);
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 700px;
  font-weight: 700;
  user-select: none;
}

.servicios-title .colored {
  color: #DA2141;
}

.servicios-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px 20px;
  justify-content: center;
  padding: 30px 0;
  box-sizing: border-box;
}

.servicio {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  width: calc(33.333% - 20px); /* Ajuste para gap */
  padding: 40px 25px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.servicio:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.servicio-img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.servicio-title {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.servicio-info {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
}

/* Estilos para ul y li */
.servicio ul {
  padding-left: 20px;
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15.5px;
  line-height: 1.5;
}

.servicio ul li {
  list-style-type: disc !important;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .servicio {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .servicio {
    width: 100%;
    padding: 30px 20px;
  }

  .servicios-container {
    padding: 60px 15px;
  }
}

/* Link ver todos */
.servicio-presupuesto-link {
  background-color: transparent;
  border: 2px solid #107C41;
  color: #107C41;
  gap: 6px;
  border-radius: 100px;
  padding: 10px 28px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
}

.servicio-presupuesto-link:hover,
.servicio-presupuesto-link:focus {
  background-color: #107C41;
  border-color: #0d5a2c;
  color: #fff;
  gap: 12px;
  transform: scale(1.05);
  outline: none;
}

.servicio-presupuesto-link > span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.servicio-presupuesto-link:hover > span,
.servicio-presupuesto-link:focus > span {
  transform: rotate(45deg);
}

/* ------------SERVICIOS-----------END */


/* ------------SOBRE NOSOTROS-----------START */
.sobre-nosotros-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 80px clamp(20px, 5vw, 90px);
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-nosotros-img {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.sobre-nosotros-text-container {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-nosotros-text{
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.sobre-nosotros-sub-title {
  font-size: 18px;
  color: #0d3c3191;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sobre-nosotros-title {
  color: #0D3C31;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.sobre-nosotros-title .colored {
  color: #107C41;
  font-weight: 900;
}

.sobre-nosotros-info {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
}

.sobre-nosotros-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 30px;
}

.sobre-nosotros-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  flex: 1 1 240px;
}

.tag-img-container {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 50%;
  background-color: #DA2141;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(218, 33, 65, 0.2);
}

.tag-img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tag-title {
  font-size: 17px;
  font-weight: 600;
  color: #0D3C31;
}

/* Responsive */
@media (max-width: 900px) {
  .sobre-nosotros-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-nosotros-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .sobre-nosotros-text-container {
    align-items: center;
  }

  .sobre-nosotros-info {
    padding: 0 10px;
  }

  .sobre-nosotros-tags {
    justify-content: center;
  }

  .sobre-nosotros-tag {
    justify-content: center;
    text-align: left;
  }
}
/* ------------SOBRE NOSOTROS-----------END */

/* ------------TRABAJOS-----------START */

/* Contenedor principal */
.trabajos-container {
  padding: 70px clamp(20px, 5vw, 90px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  font-family: 'Inter', sans-serif;
}

/* Títulos y textos intro */
.trabajos-text-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.trabajos-text {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.trabajos-sub-title {
  font-size: 18px;
  color: #0d3c3191;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.trabajos-title {
  text-transform: uppercase;
  color: #0D3C31;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  user-select: none;
}

.colored {
  color: #107C41; /* Verde vibrante para destacar */
  font-weight: 900;
}

/* Link ver todos */
.trabajos-link {
  background-color: transparent;
  border: 2px solid #107C41;
  color: #107C41;
  gap: 6px;
  border-radius: 100px;
  padding: 10px 28px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
}

.trabajos-link:hover,
.trabajos-link:focus {
  background-color: #107C41;
  border-color: #0d5a2c;
  color: #fff;
  gap: 12px;
  transform: scale(1.05);
  outline: none;
}

.trabajos-link > span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.trabajos-link:hover > span,
.trabajos-link:focus > span {
  transform: rotate(45deg);
}

/* Contenedor de proyectos */
.trabajos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  box-sizing: border-box;
}

/* Cada proyecto */
.trabajo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 400px;
  gap: 50px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  user-select: none;
}

/* Alternar orden imagen/texto */
.trabajo.trabajo-reverse {
  flex-direction: row-reverse;
}

/* Hover para proyectos */
.trabajo:hover,
.trabajo:focus-within {
  transform: translateY(-10px) scale(1.02);
  outline: none;
  z-index: 10;
}

/* Imagen del proyecto */
.trabajo-img {
  width: 50%;
  height: 370px;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 4px 8px rgb(0 0 0 / 0.1));
  transition: transform 0.4s ease;
}

/* Zoom suave en hover solo imagen */
.trabajo:hover .trabajo-img,
.trabajo:focus-within .trabajo-img {
  transform: scale(1.05);
}

/* Texto del proyecto */
.trabajo-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}

/* Título */
.trabajo-title {
  font-size: 32px;
  font-weight: 700;
  color: #107C41;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.08);
  user-select: text;
}

/* Descripción */
.trabajo-info {
  font-size: 19px;
  line-height: 1.5;
  color: #333;
  max-height: 5.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: text;
  transition: max-height 0.4s ease;
}

/* Al hacer hover mostrar toda la descripción */
.trabajo:hover .trabajo-info,
.trabajo:focus-within .trabajo-info {
  max-height: 100vh;
}

/* Etiquetas (metros, baños, habitaciones) */
.trabajo-tags {
  display: flex;
  gap: 20px;
  padding-top: 10px;
  flex-wrap: wrap;
}

.trabajo-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #555;
  background: #e0f2e9;
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 600;
  box-shadow: 0 3px 6px rgb(16 124 65 / 0.3);
  transition: background-color 0.3s ease;
}

.trabajo-tag span {
  font-size: 22px;
  color: #107C41;
  transition: color 0.3s ease;
}

/* Al pasar sobre cada tag, cambio de color */
.trabajo-tag:hover {
  background-color: #107C41;
  color: #fff;
  box-shadow: 0 5px 10px rgb(16 124 65 / 0.7);
}

.trabajo-tag:hover span {
  color: #e0f2e9;
}

/* Link leer más */
.trabajo-link {
  align-self: flex-start;
  color: #107C41;
  padding: 8px 25px;
  border-radius: 50px;
  border: 2px solid #107C41;
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
  width: max-content;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.trabajo-link:hover,
.trabajo-link:focus {
  background-color: #0d5a2c;
  color: #fff;
  transform: scale(1.1);
  outline: none;
}

/* Animaciones suaves de entrada (opcional) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .trabajo {
    flex-direction: column;
    height: auto;
  }

  .trabajo.trabajo-reverse {
    flex-direction: column;
  }

  .trabajo-img,
  .trabajo-text {
    width: 100%;
    height: auto;
  }

  .trabajo-img {
    border-radius: 12px;
    margin-bottom: 20px;
  }
}

/* ------------TRABAJO DETALLE-----------START */
.trabajo-detalle {
  padding: 80px clamp(20px, 5vw, 90px);
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}

.trabajo-detalle-article {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trabajo-detalle-titulo {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #0D3C31;
  text-align: left;
  line-height: 1.3;
}

.trabajo-detalle-galeria {
  border-radius: 10px;
  overflow: hidden;
}

.swiper {
  border-radius: 10px;
}

.swiper-slide img {
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.02);
}

/* Descripción */
.trabajo-detalle-descripcion {
  font-size: 18px;
  color: #0d3c31d2;
  line-height: 1.6;
}

/* Metadatos */
.trabajo-detalle-meta-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.trabajo-meta-titulo {
  font-weight: 600;
  color: #107C41;
  font-size: 16px;
}

.trabajo-meta-valor {
  font-size: 16px;
  color: #0d3c31d2;
}

/* Navegación */
.trabajo-detalle-volver {
  display: inline-block;
  margin: 40px auto 0;
  font-size: 16px;
  color: #107C41;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-align: center;
}

.trabajo-detalle-volver:hover {
  color: #107C41;
}

/* Modal Zoom */
.modal-zoom {
  z-index: 10000000000000000001111111 !important;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-imagen {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.cerrar-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}

.cerrar-modal:hover {
  color: #DA2141;
}

/* Estado "no encontrado" */
.trabajo-no-encontrado {
  padding: 80px 20px;
  text-align: center;
}

.trabajo-no-encontrado-titulo {
  font-size: 28px;
  color: #DA2141;
}

.trabajo-no-encontrado-texto {
  font-size: 18px;
  color: #000000aa;
  margin-top: 10px;
}
.swiper-wrapper{
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .trabajo-detalle-meta-lista {
    grid-template-columns: 1fr;
  }
}


/* Responsive completo para trabajo-detalle */

@media (max-width: 1024px) {
  .trabajo-detalle-article {
    width: 100%;
    padding: 20px;
  }

  .trabajo-detalle-titulo {
    font-size: clamp(24px, 5vw, 32px);
    padding: 0 10px 20px;
  }

  .trabajo-detalle-galeria {
    padding: 0 10px 30px;
  }

  .trabajo-detalle-imagen {
    border-radius: 8px;
  }

  .trabajo-detalle-descripcion {
    padding: 0 10px;
  }

  .trabajo-detalle-texto {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.5;
    color: #0d3c31d2;
  }

  .trabajo-detalle-meta-lista {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
    padding: 0 10px;
  }

  .trabajo-meta-titulo,
  .trabajo-meta-valor {
    font-size: 14px;
  }

  .trabajo-detalle-volver {
    font-size: 14px;
    margin: 30px 10px 0;
    text-align: center;
    display: block;
  }
}

@media (max-width: 480px) {
  .trabajo-detalle-article {
    padding: 15px 10px;
  }

  .trabajo-detalle-titulo {
    font-size: 22px;
    padding-bottom: 15px;
  }

  .trabajo-detalle-galeria {
    padding-bottom: 20px;
  }

  .trabajo-detalle-texto {
    font-size: 15px;
  }

  .trabajo-detalle-meta-lista {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    padding: 0 10px;
  }

  .trabajo-meta-titulo,
  .trabajo-meta-valor {
    font-size: 14px;
  }

  .trabajo-detalle-volver {
    font-size: 14px;
    margin: 20px 10px 0;
    text-align: center;
    display: block;
  }

  /* Modal imagen zoom */
  .modal-imagen {
    max-width: 95%;
    max-height: 70vh;
  }

  .cerrar-modal {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}

/* ------------TRABAJOS-----------END */



/* ------------NUMBERS-----------START */
.numbers-container {
  display: flex;
  justify-content: space-between;
  gap: 0; /* eliminamos el gap para que los separadores funcionen visualmente mejor */
  padding: 80px clamp(20px, 5vw, 90px);
  background-color: #f5f7f6;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
}

.number {
  flex: 1 1 200px;
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.number img {
  width: clamp(80px, 15vw, 110px);
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  max-height: 60px;
}

/* Separador vertical a la derecha de cada .number excepto el último */
.number:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 3px;
  background-color: rgba(16, 124, 65, 0.2); /* verde con opacidad */
}

/* Valor principal */
.number-value {
  color: #0D3C31;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
}

/* Descripción */
.number-label {
  color: #0D3C31b3;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.4;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .numbers-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .number {
    max-width: 45%;
    flex: 1 1 45%;
    margin-bottom: 30px;
  }

    /* Redefinimos el after para formato columna: horizontal debajo */
  .number:not(:last-child)::after {
    right: auto;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .number {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ------------NUMBERS-----------END */




/* ------------TESTIMONIOS-----------STARt */
.testimonios-bg{
    background-image: url("/paginaplantilla/public/images/testimonios/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonios-container{
    background-color: #ffffff8f;
    padding: 100px 90px;
    text-align: center;
}

.testimonios-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.testimonios-sub-title{
    font-size: 18px;
    color: #DA2141;
}

.testimonio-card{
    background-color: #ffffff8f;
    padding: 40px 20px;
    border-radius: 10px;
    position: relative;
    padding-top: 80px;
    width: 400px;
}

.testimonio-comillas{
    position: absolute;
    right: 30px;
    top: 30px;
    width: 60px;
    height: max-content;
}

.testimonios-title{
    color: #000000d8;
    text-transform: uppercase;
    font-size: clamp(26px, 4vw, 35px);
    line-height: 45px;
    width: 700px;
}

.testimonio-text{
    color: #1e1e1ed8;
    font-size: 20px;
    line-height: 20px;
}

.testimonio-cliente{
    color: #DA2141;
    padding-top: 30px;
    font-size: 18px;
}

.testimonios-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
}

.testimonio-container {
  display: none;
  transition: opacity 0.3s ease;
}

.testimonio-container.active {
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DA2141;
    color: #fff;
    border: none;
    font-size: 24px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    border-radius: 100%;
}

.slider-controls button:hover {
  background-color: #f57b8f;
}

/* ------------TESTIMONIOS-----------END */


/* ------------CONTACTO-----------START */

.contact-container {
  display: flex;
  flex-direction: column;
  padding: 80px clamp(20px, 5vw, 90px);
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.contact-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}

.contact-info {
  font-size: 18px;
  color: #0D3C3193;
}

.contact-title {
  color: #0D3C31;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 30px;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.contact-user {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.input-container {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-label {
  font-size: 16px;
  color: #0D3C31;
  font-weight: 500;
}

.contact-input,
.contact-textarea {
  width: 100%;
  font-size: 16px;
  color: #0D3C31;
  border: none;
  padding: 12px 14px;
  background-color: #107C4110;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  outline: none;
}

.contact-input {
  height: 50px;
}

.contact-textarea {
  min-height: 160px;
  height: 100%;
  resize: vertical;
  font-size: 17px;
}

.contact-input:focus,
.contact-textarea:focus {
  background-color: #107C4122;
}

.contact-button {
  padding: 15px 30px;
  background-color: #107C41;
  border: 2px solid #107C41;
  color: #fff;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: flex-start;
  width: 100%;
  text-align: center;
}

.contact-button:hover {
  background-color: #0c5e32;
  border-color: #0c5e32;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.contact-data-li {
  font-size: 17px;
  color: #0D3C31;
}

.contact-data-li a,
.contact-data-li a i {
  color: #093166;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-data-li a:hover {
  color: #107C41;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

  .input-container{
    flex: none;
  }

  .contact-user {
    flex-direction: column;
  }

  .contact-button {
    align-self: stretch;
  }
}
/* ------------CONTACTO-----------END */


/* ------------TRES PASOS-----------START */

.tres-pasos-container {
  padding: 70px clamp(20px, 5vw, 90px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  font-family: 'Inter', sans-serif;
}

.tres-pasos-text {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 50px;
}

.tres-pasos-title {
  text-transform: uppercase;
  color: #0D3C31;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.tres-pasos-info {
  color: #0d3c24bb;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Contenedor de pasos */
.tres-pasos {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

/* Cada paso */
.paso {
  flex: 1 1 300px;
  background-color: #f8fefb;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paso:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.paso-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.paso-title {
  font-size: 20px;
  font-weight: 700;
  color: #107C41;
  margin-bottom: 12px;
}

.paso-info {
  font-size: 17px;
  color: #444;
  line-height: 1.5;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .tres-pasos {
    flex-direction: column;
    align-items: center;
  }

  .paso {
    width: 100%;
    max-width: 400px;
  }
}

/* ------------TRES PASOS-----------END */


/* ------------FAQ-----------START */
.faq-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 90px);
  gap: 60px;
  font-family: 'Inter', sans-serif;
}

.faq-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  color: #0D3C31;
  max-width: 800px;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #107C41;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f1fdf6;
}

.faq-icon {
  font-size: 18px;
  color: #107C41;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* ajustable */
  padding: 10px 24px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
    text-align: center;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer {
    font-size: 15px;
  }
}
/* ------------FAQ-----------END */


.space{
  height: 50px;
}