
    :root {
      --green-950: #062b1f;
      --green-900: #0b3d2d;
      --green-800: #0f5138;
      --green-700: #146c43;
      --green-600: #198754;
      --green-500: #22a866;
      --green-300: #8fd6a3;
      --green-100: #e8f7ed;
      --lime: #c7f464;
      --earth: #9b6a38;
      --cream: #f7f8ee;
      --white: #ffffff;
      --text: #24352d;
      --muted: #6b7a72;
      --shadow: 0 24px 70px rgba(6, 43, 31, .18);
      --radius: 28px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(143, 214, 163, .35), transparent 36rem),
        linear-gradient(180deg, #f6fbf3 0%, #ffffff 42%, #f2f8ee 100%);
      line-height: 1.6;
          background-attachment: fixed;
      overflow-x: hidden;
    }
section#proyectos-destacados {
    padding: 0;
}

section#equipo {
    padding: 0;
}
    img {
      display: block;
      max-width: 100%;
    }

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

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

    .topbar {
      background: var(--green-950);
      color: rgba(255,255,255,.9);
      font-size: .9rem;
    }

    .topbar__inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    a.brand img {
    max-width: 160px;
    padding: 10px 0;
    }


    .topbar strong {
      color: var(--lime);
      font-weight: 700;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, .86);
      border-bottom: 1px solid rgba(20,108,67,.12);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--green-900);
      letter-spacing: -.03em;
      min-width: max-content;
    }

    .brand__mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: var(--white);
      background:
        linear-gradient(135deg, var(--green-700), var(--green-500)),
        var(--green-700);
      box-shadow: 0 12px 30px rgba(25, 135, 84, .32);
    }

    .brand__mark i {
      font-size: 1.35rem;
    }

    .brand__text span {
      display: block;
      font-size: .76rem;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 16px;
      background: var(--green-100);
      color: var(--green-900);
      font-size: 1.25rem;
      cursor: pointer;
      transition: .2s ease;
    }

    .menu-toggle:hover {
      background: var(--green-700);
      color: var(--white);
    }

    .navlinks {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex-wrap: wrap;
      font-size: .92rem;
      font-weight: 700;
      color: var(--green-900);
    }

    .navlinks a,
    .dropdown__trigger {
      padding: 9px 11px;
      border-radius: 999px;
      transition: .2s ease;
    }

    .navlinks a:hover,
    .dropdown:hover .dropdown__trigger {
      background: var(--green-100);
      color: var(--green-700);
    }

    .dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .dropdown__trigger {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--green-900);
      cursor: default;
      user-select: none;
    }

    .dropdown__trigger i {
      font-size: .74rem;
      transition: transform .2s ease;
    }

    .dropdown:hover .dropdown__trigger i,
    .dropdown:focus-within .dropdown__trigger i {
      transform: rotate(180deg);
    }

    .dropdown__menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      min-width: 285px;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(20,108,67,.12);
      box-shadow: 0 24px 70px rgba(6,43,31,.16);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: .2s ease;
      backdrop-filter: blur(18px);
    }

    .dropdown:hover .dropdown__menu,
    .dropdown:focus-within .dropdown__menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown__menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -14px;
      height: 14px;
    }

    .dropdown__menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      width: 100%;
      border-radius: 15px;
      padding: 12px 14px;
      color: var(--green-900);
      white-space: nowrap;
    }

    .dropdown__menu a::after {
      content: "061";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--green-600);
      opacity: .65;
      font-size: .78rem;
    }

    .dropdown__menu a:hover {
      background: var(--green-100);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 15px 24px;
      background: var(--green-700);
      color: var(--white);
      font-weight: 800;
      box-shadow: 0 18px 40px rgba(20, 108, 67, .25);
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: var(--green-600);
      box-shadow: 0 22px 48px rgba(20, 108, 67, .32);
    }

    .btn--light {
      background: var(--white);
      color: var(--green-800);
      box-shadow: none;
    }

    .hero {
      position: relative;
      isolation: isolate;
      padding: 86px 0 78px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -110px;
      bottom: -150px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(199, 244, 100, .18);
      filter: blur(4px);
      z-index: -1;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.07fr .93fr;
      gap: 48px;
      align-items: center;
    }


    .project-logo-placeholder img {
    max-width: 170px;
    mix-blend-mode: darken;
    max-height: 80px;
}




    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      color: var(--lime);
      background: rgba(255,255,255,.08);
      font-weight: 800;
      font-size: .86rem;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 7px rgba(199,244,100,.14);
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 6.7rem);
      line-height: .9;
      letter-spacing: -.08em;
      color: var(--white);
      max-width: 800px;
      margin-bottom: 26px;
    }

    .hero h1 span {
      color: var(--lime);
      display: block;
    }

    .hero p {
      color: rgba(255,255,255,.82);
      font-size: 1.12rem;
      max-width: 650px;
      margin-bottom: 34px;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .hero-card {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      padding: 22px;
      backdrop-filter: blur(18px);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .hero-card__image {
      min-height: 310px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(20,108,67,.08), rgba(6,43,31,.25)),
        url("img/hero-campo.jpg") center/cover;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }

    .hero-card__badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      background: var(--white);
      color: var(--green-900);
      padding: 12px 15px;
      border-radius: 18px;
      font-weight: 800;
      max-width: 210px;
      box-shadow: 0 15px 35px rgba(0,0,0,.16);
    }

    .hero-card__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .stat {
      padding: 17px;
      border-radius: 20px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.14);
    }

    .stat strong {
      display: block;
      font-size: 2rem;
      line-height: 1;
      color: var(--lime);
    }

    .section {
      padding: 92px 0;
    }

    .section__head {
      max-width: 780px;
      margin-bottom: 42px;
    }

    .kicker {
      color: var(--green-700);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .82rem;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section h2 {
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1.02;
      letter-spacing: -.055em;
      color: var(--green-950);
      margin-bottom: 18px;
    }

    .section__lead {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .lines {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 38px;
      align-items: stretch;
    }

    .text-panel {
      padding: 42px;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      border: 1px solid rgba(20,108,67,.08);
    }

    .text-panel p + p {
      margin-top: 18px;
    }

    .image-panel {
      min-height: 460px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(12,70,50,.05), rgba(6,43,31,.32)),
        url("img/imagen-nosotros.jpeg") center/cover;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
.project-logo-placeholder span {
    color: black;
    text-transform: uppercase;
    font-size: 25px;
    max-width: 260px;
    line-height: 1;
}
    .floating-card {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(12px);
      color: var(--green-950);
      font-weight: 800;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      position: relative;
      min-height: 250px;
      padding: 26px;
      border-radius: 28px;
      overflow: hidden;
      color: var(--white);
      background: var(--green-800);
      box-shadow: 0 18px 48px rgba(6,43,31,.18);
      isolation: isolate;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(6,43,31,.24);
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--bg) center/cover;
      transform: scale(1.02);
      transition: transform .35s ease;
    }

    .service-card:hover::before {

    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(6,43,31,.34), rgba(6,43,31,.92));
    }

    .service-card__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 72px;
    font-size: 1.35rem;
    }

    .service-card__icon i {
      color: var(--white);
    }

    .service-card h3 {
      font-size: 1.55rem;
      line-height: 1.05;
      letter-spacing: -.04em;
      margin-bottom: 12px;
    }

    .service-card p {
      color: rgba(255,255,255,.82);
      font-size: .95rem;
    }

    .cta {
      padding: 0 0 92px;
    }

    .cta__box {
      position: relative;
      overflow: hidden;
      border-radius: 36px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      background:
        radial-gradient(circle at 90% 10%, rgba(199,244,100,.35), transparent 18rem),
        linear-gradient(135deg, var(--green-900), var(--green-600));
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .cta__box h2 {
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.7rem);
      letter-spacing: -.06em;
      line-height: 1;
      margin-bottom: 12px;
    }

    .cta__box p {
      color: rgba(255,255,255,.82);
      max-width: 660px;
    }

    .experience {
      background: var(--green-950);
      color: var(--white);
      border-radius:42px;
      position: relative;
      overflow: hidden;
    }


.technology-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 36px;
    background: radial-gradient(circle at 0% 0%, rgba(199, 244, 100, .28), transparent 22rem), linear-gradient(135deg, #ffffff, #eef9ef);
    border: 1px solid rgba(20, 108, 67, .12);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.technology-media__badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    color: var(--green-950);
    font-weight: 800;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(6, 43, 31, .16);
}

.technology-media {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(6, 43, 31, .08), rgba(6, 43, 31, .42)), url(img/soft.jpg) center / cover;
    overflow: hidden;
}

.technology-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
}

.technology-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    list-style: none;
    color: var(--green-950);
    font-weight: 700;
    font-size: 13px;
    padding-bottom: 8px;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
}
ul.technology-list strong {
    display: block;
    min-width: 150px;
}

.technology-media__badge i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 1.15rem;
}


    .experience::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(6,43,31,.96), rgba(6,43,31,.78)),
        url("https://images.unsplash.com/photo-1473773508845-188df298d2d1?auto=format&fit=crop&w=1600&q=80") center/cover;
      opacity: .95;
    }

    .experience .container {
      position: relative;
      z-index: 1;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: .55fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .years {
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: inset 0 0 70px rgba(199,244,100,.14);
    }

    .years strong {
      display: block;
      font-size: clamp(5rem, 10vw, 8.8rem);
      line-height: .85;
      color: var(--lime);
      letter-spacing: -.08em;
    }

    .years span {
      display: block;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 900;
      font-size: .83rem;
      color: rgba(255,255,255,.76);
      margin-top: 14px;
    }

    .experience h2 {
      color: var(--white);
      font-size: clamp(2rem, 4.5vw, 4.4rem);
      letter-spacing: -.06em;
      line-height: 1;
    }

    .experience p {
      color: rgba(255,255,255,.8);
      margin-top: 24px;
      font-size: 1.05rem;
    }

    .contact {
      padding: 90px 0 70px;
      background: #f6fbf3;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
    }

    .contact-card, .contact-form {
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(20,108,67,.1);
      box-shadow: 0 18px 55px rgba(6,43,31,.1);
      padding: 34px;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: var(--green-100);
      color: var(--green-950);
      font-weight: 700;
    }

    .contact-item span:first-child {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--white);
      color: var(--green-700);
      font-size: 1.05rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 20px;
    }

    .field {
      width: 100%;
      border: 1px solid rgba(20,108,67,.16);
      border-radius: 18px;
      padding: 15px 16px;
      font: inherit;
      outline: none;
      transition: border .2s ease, box-shadow .2s ease;
      background: #fbfdf9;
    }

    .field:focus {
      border-color: var(--green-600);
      box-shadow: 0 0 0 5px rgba(25,135,84,.1);
    }

    textarea.field {
      min-height: 132px;
      resize: vertical;
      grid-column: 1 / -1;
    }

    .form-message {
      margin-top: 16px;
      font-weight: 800;
      min-height: 24px;
    }

    .anti-spam-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .form-message.is-success {
      color: var(--green-700);
    }

    .form-message.is-error {
      color: #b42318;
    }

    .footer {
      background: var(--green-950);
      color: rgba(255,255,255,.78);
      padding: 46px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr .9fr;
      gap: 36px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer h3, .footer h4 {
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 20px;
    }

    .footer-links a:hover {
      color: var(--lime);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      font-size: .92rem;
    }

    @media (max-width: 980px) {
      .navbar__inner {
        min-height: 76px;
        align-items: center;
        flex-direction: row;
        padding: 12px 0;
        position: relative;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
      }

      .navlinks {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(20,108,67,.12);
        box-shadow: 0 24px 70px rgba(6,43,31,.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: .2s ease;
      }

      .navlinks.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .navlinks a,
      .dropdown__trigger {
        width: 100%;
        justify-content: space-between;
        padding: 13px 15px;
        border-radius: 16px;
      }

      .dropdown {
        display: grid;
        width: 100%;
      }

      .dropdown__trigger {
        cursor: pointer;
      }

      .dropdown__menu {
        position: static;
        min-width: 100%;
        margin-top: 6px;
        padding: 8px;
        border-radius: 18px;
        box-shadow: none;
        background: var(--green-100);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
      }

      .dropdown.is-open .dropdown__menu {
        display: grid;
      }

      .dropdown:hover .dropdown__menu {
        transform: none;
      }

      .dropdown__menu::before {
        display: none;
      }

      .dropdown.is-open .dropdown__trigger i {
        transform: rotate(180deg);
      }

      .hero__grid,
      .lines,
      .experience-grid,
      .contact-grid,
      .cta__box,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta__box {
        padding: 34px;
      }
    }

    @media (max-width: 680px) {
.technology-content {
    padding-top: 50px;
}
      .technology-media__badge {

 

    line-height: 1;
    padding: 4px;
 
    background: rgb(7 53 13 / 28%);
    color: white;
  
}

      .technology-card {
    display: block;
   
}

ul.technology-list strong {

    min-width: 100px;
}
      h1.entry-title {
        font-size: 28px;
     }

    .section-masthead__image-wrapper img {
        max-height: 45vh;
        width: auto;
    }


    .portfolio-hero__media {   
        text-align: right;
        left: inherit;
        right: 0;
    }
      .container {
        width: min(100% - 28px, var(--max));
      }

      .topbar__inner,
      .copyright {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
      }

      .brand__text {
        font-size: .92rem;
      }

      .brand__text span {
        font-size: .65rem;
      }

      .hero {
        padding: 58px 0;
      }

      .hero-card__stats,
      .services-grid,
      .form-grid,
      .footer-links {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 66px 0;
      }

      .text-panel,
      .contact-card,
      .contact-form {
        padding: 24px;
      }

      .hero h1 {
        font-size: clamp(3.1rem, 18vw, 5.2rem);
      }
    }
