
:root {
  --green: #0c3d25;
  --green-2: #216744;
  --green-light: #1e3e25;
  --wood: #b58a58;
  --wood-light: #d9bb91;
  --ink: #102219;
  --muted: #68736d;
  --white: #ffffff;
  --line: #dfe6e1;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* =========================
   HERO / HEADER
========================= */

.top-section {
  width: 100%;
  min-height: 700px;
  background-image: url("Fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand-mark {
  display: block;
  width: 100px;
  height: auto;
}

.brand-mark2 {
  display: block;
  width: 100px;
  height: auto;
  background-color: white;
  border-radius: 5px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu a {
  position: relative;
  padding: 31px 0;
  color: #ffffff;
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  background: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 13px 18px !important;
  border-radius: 3px;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  overflow: hidden;
}

.hero-content {
  min-height: 618px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 40px 70px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--wood);
}

.lead {
  max-width: 520px;
  margin: 24px 0 30px;
  color: #ffffff;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green);
}

/* =========================
   SERVICES
========================= */

.services {
  background: var(--green);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-grid article {
  min-height: 125px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255,255,255,.65);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.service-grid h3 {
  margin: 0 0 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.service-grid p {
  margin: 0;
  color: #cbd8d0;
  font-size: 11px;
  line-height: 1.4;
}

/* =========================
   ABOUT
========================= */

.nosotros {
  width: 100%;
  background-color: #ede8e3;
}

.about {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  width: min(500px, 100%);
  height: 600px;
  padding: 40px 50px;
  background: #e8decc;
  overflow: hidden;
}

.about-image > div {
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}

.about-copy h2,
.contact-copy h2 {
  margin-top: 0;
}

.title2 {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
}

/* =========================
   PROCESS
========================= */

.process {
  width: 100%;
  background-color: #173b24;
  color: var(--white);
}

.process-container {
  width: min(var(--max), calc(100% - 48px));
  min-height: 620px;
  margin-inline: auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.process-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-intro .eyebrow {
  margin: 0 0 35px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffffff;
}

.process-intro h2 {
  margin: 0 0 45px;
  max-width: 600px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #ffffff;
}

.process-intro h2 span {
  color: #c49455;
}

.process-description {
  max-width: 620px;
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff;
}

.process-list {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.process-title {
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffffff;
}

.process-item {
  display: grid;
  grid-template-columns: 70px 80px 1fr;
  align-items: center;
  min-height: 145px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.process-number {
  font-family: Georgia, serif;
  font-size: 38px;
  color: #c49455;
}

.process-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #082d1b;
}

.process-info {
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,.45);
}

.process-info h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
}

.process-info p {
  max-width: 480px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

/* =========================
   CONTACT
========================= */

.contact {
  min-height: 600px;
  padding-top: 110px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.c{
  color: var(--wood);
  font-size: large;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 500px;
}

.contact-details {
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.contact-details div {
  display: grid;
  gap: 2px;
}

.contact-details strong {
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 35px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(16,34,25,.06);
}

.contact-form label {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  padding: 14px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form-body .input-group button{
   font-size: var(--small-font-size);
   font-weight: var(--font-medium);
   width: 200px;
   padding: 16px 30px;
   margin-top: 10px;
   transition: .3s;
}

.contact-form-alert{
   cursor: pointer;
}

.contact-form-alert span{
   color: var(--color-02);
   font-size: var(--tiny-font-size);
   font-weight: var(--font-regular);
}

.contact-form-alert i{
   color: var(--primary-color);
   font-size: 1.25rem;
}

.contact-btn{
  margin-top: 10px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #082d1b;
  color: #d8e3dc;
}

.footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  color: #aebeb5;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {
  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .menu {
    gap: 18px;
    font-size: 12px;
  }
  #h4{
    color: var(--white);
  }
  .about,
  .process-container {
    gap: 45px;
  }

  .about-image {
    height: 540px;
    padding: 32px;
  }

  .process-container {
    grid-template-columns: .85fr 1.15fr;
  }

  .process-intro h2 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .process-description {
    font-size: 17px;
  }

  .process-item {
    grid-template-columns: 55px 60px 1fr;
    min-height: 125px;
  }

  .process-number {
    font-size: 30px;
  }
  .process-icon {
    width: 50px;
    height: 50px;
  }

  .process-info {
    padding-left: 18px;
  }

  .process-info h3 {
    font-size: 17px;
  }

  .process-info p {
    font-size: 13px;
  }

  .contact {
    gap: 50px;
  }
}

/* =========================
   MOBILE NAV + LAYOUT
========================= */

@media (max-width: 760px) {
  .container,
  .process-container {
    width: min(100% - 30px, var(--max));
  }
  .nav-cta{
    color: var(--white);
  }
  .top-section {
    min-height: auto;
    background-position: center;
  }

  .site-header {
    background: rgba(255,255,255,.92);
  }

  .nav {
    min-height: 70px;
  }

  .brand-mark {
    width: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 18px 24px 24px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 12px 0;
    color: var(--green);
  }

  .menu a.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  #h4{
    color: var(--white);
  }
  .hero-content {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 600px;
    padding: 70px 0 60px;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .lead {
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid article {
    min-height: 115px;
    padding: 22px 16px;
  }

  .service-grid article:nth-child(2) {
    border-right: 0;
  }

  .service-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .about {
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-image {
    width: min(500px, 100%);
    height: auto;
    aspect-ratio: 5 / 6;
    padding: 28px;
    margin-inline: auto;
  }

  .about-copy {
    max-width: 650px;
  }

  .process-container {
    min-height: 0;
    padding: 65px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-intro h2 {
    font-size: clamp(42px, 10vw, 58px);
    margin-bottom: 28px;
  }

  .process-intro .eyebrow {
    margin-bottom: 20px;
  }

  .process-description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process-list {
    width: 100%;
  }

  .process-item {
    grid-template-columns: 55px 55px 1fr;
    min-height: 115px;
  }

  .process-number {
    font-size: 28px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
  }

  .process-info {
    padding-left: 15px;
  }

  .process-info h3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .process-info p {
    font-size: 12px;
    line-height: 1.45;
  }

  .contact {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-inner {
    min-height: 0;
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {
  .container,
  .process-container {
    width: calc(100% - 24px);
  }
  #h4{
    color: var(--white);
  }
  .hero-copy {
    min-height: 560px;
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .about {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .about-image {
    padding: 20px;
  }

  .process-container {
    padding: 50px 0;
    gap: 40px;
  }

  .process-item {
    grid-template-columns: 42px 42px 1fr;
    min-height: 105px;
  }

  .process-number {
    font-size: 24px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
  }

  .process-info {
    padding-left: 12px;
  }

  .process-info h3 {
    font-size: 14px;
  }

  .process-info p {
    font-size: 11px;
  }

  .contact-form {
    padding: 22px;
  }
}
