:root {
    --primary: #076e44;
    --primary-dark: #104930;
    --secondary: #7fc61b;
    --surface: #f9f9f8;
    --surface-container: #edeeed;
    --on-surface: #191c1c;
    --on-surface-variant: #3f4941;
    --outline: #bec9bf;
    --white: #ffffff;
    --max-width: 1280px;
    --header-height: 80px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Inter", sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    line-height: 1.5;
    overflow-x: hidden;
  }

  h1,
  h2,
  h3 {
    font-family: "Montserrat", sans-serif;
  }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--outline);
    z-index: 1000;
    display: flex;
    align-items: center;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo img {
    height: 60px;
    width: auto;
    display: block;
}

  /* Mobile Menu Toggle (Checkbox Hack) */
  #menu-toggle {
    display: none;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: var(--primary);
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
  }

  nav a {
    text-decoration: none;
    color: var(--on-surface-variant);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
  }

  nav a:hover,
  nav a.active {
    color: var(--primary);
  }

  nav a.active {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
  }

  .btn-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
  }

  .btn-header:hover {
    background: var(--primary);
  }

  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    color: var(--white);
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(7, 110, 68, 0.9) 0%,
      rgba(16, 73, 48, 0.7) 100%
    );
  }

  .hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
  }

  .badge {
    text-align: center;
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero h1 italic,
  .hero h1 span {
    font-style: italic;
    color: var(--secondary);
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
  }

  .hero-btns {
    display: flex;
    justify-content: center; /* Esto centra los botones horizontalmente */
    gap: 16px;
  }

  .btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
  }

  .btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
  }

  /* Stats Section */
  .stats {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--outline);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .stat-item h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    letter-spacing: 1px;
    font-weight: 600;
  }

  .stat-item:not(:last-child) {
    border-right: 1px solid var(--outline);
  }

  /* Services Section */
  .services {
    padding: 100px 0;
    text-align: center;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
  }

  .section-header h2 span {
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 4px;
  }

  .section-header p {
    color: var(--on-surface-variant);
    max-width: 650px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    padding: 48px 32px;
    border: 1px solid var(--outline);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
  }

  .icon-box {
    width: 64px;
    height: 64px;
    background: var(--surface-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--on-surface);
  }

  .service-card p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.6;
  }

  /* Contact Point Section */
  .contact-point {
    padding: 100px 0;
    background: var(--surface-container);
  }

  .split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .split-image {
    flex: 1;
  }

  .split-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .split-content {
    flex: 1;
  }

  .split-content h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
  }

  .split-content p {
    margin-bottom: 24px;
    color: var(--on-surface);
  }

  .feature-list {
    list-style: none;
    margin-bottom: 32px;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--on-surface-variant);
  }

  .feature-list .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
  }

  .link-more {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  /* Contact Form Section */
  .contact-form-section {
    padding: 100px 0;
  }

  .form-card {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid var(--outline);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .form-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .form-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 12px;
  }

  .form-header p {
    color: var(--on-surface-variant);
    font-size: 14px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group.full-width {
    grid-column: span 2;
  }

  label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--on-surface-variant);
  }

  input,
  select,
  textarea {
    padding: 12px 16px;
    border: 1px solid var(--outline);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
  }

  .btn-submit {
    grid-column: span 2;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 16px;
  }

  /* Footer */
  footer {
    background: var(--surface-container);
    padding: 40px 0;
    border-top: 1px solid var(--outline);
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo-box .logo {
    font-size: 38px;
    margin-bottom: 4px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo-box p {
    margin-top: 10px;
    font-size: 12px;
    color: var(--on-surface-variant);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    text-decoration: none;
    color: var(--on-surface-variant);
    font-size: 12px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero h1 {
      font-size: 48px;
    }
    .split-layout {
      flex-direction: column;
    }
    .services-grid {
      gap: 16px;
    }
  }

  @media (max-width: 960px) {
    .hamburger {
      display: block;
    }

    nav {
      position: absolute;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background: var(--white);
      border-bottom: 1px solid var(--outline);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

    nav ul {
      flex-direction: column;
      gap: 0;
      padding: 16px 0;
    }

    nav ul li {
      width: 100%;
      text-align: center;
    }

    nav a {
      display: block;
      padding: 16px;
      font-size: 16px;
    }

    nav a.active {
      border-bottom: none;
      background: var(--surface-container);
      color: var(--primary);
    }

    #menu-toggle:checked ~ nav {
      max-height: 500px;
    }

    #menu-toggle:checked ~ label .material-symbols-outlined {
      content: "close";
    }

    .btn-header {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
    .stat-item:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid var(--outline);
      padding-bottom: 24px;
      margin-bottom: 24px;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
    .form-group.full-width,
    .btn-submit {
      grid-column: span 1;
    }
    .footer-content {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }
    .hero h1 {
      font-size: 36px;
    }
    .hero-btns {
      flex-direction: column;
    }
    .section-header h2 {
      font-size: 26px;
    }
    .split-content h2 {
      font-size: 26px;
      text-align: center;
    }
    .form-card {
      padding: 32px 24px;
    }
    
    .footer-content img {
      margin: 0 auto;
      margin-bottom: 20px;
    }

    .footer-links {
      flex-direction: column;
      gap: 8px;
    }
  }