    :root {
      --green-900: #0b4f2d;
      --green-800: #0e6a36;
      --green-700: #12783c;
      --green-100: #eef7f1;
      --gold-500: #d3a81f;
      --gold-400: #e5bd42;
      --slate-900: #142029;
      --slate-700: #43505b;
      --slate-200: #dbe3e8;
      --white: #ffffff;
      --shadow: 0 14px 40px rgba(11, 79, 45, 0.14);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--slate-900);
      background-color: #f5f6f7;
      line-height: 1.55;
      position: relative;
      overflow-x: hidden;
      transition: background-color 1.5s ease, color 1.5s ease;
    }

    body::before,
    body::after {
      content: '';
      position: fixed;
      inset: -8% -8% auto -8%;
      height: 120vh;
      pointer-events: none;
      z-index: -2;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: .92;
      will-change: transform;
      transition: opacity 1.5s ease, filter 1.5s ease;
    }

    body::before {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 1200"><rect width="1600" height="1200" fill="%23f4f4f5"/><path d="M0 120 C250 10 520 40 760 180 C1010 320 1260 360 1600 230 L1600 470 C1310 560 1030 520 770 390 C500 250 230 240 0 340 Z" fill="%23ffffff"/><path d="M0 330 C260 220 520 260 760 420 C980 565 1280 620 1600 520 L1600 770 C1320 860 1040 820 760 680 C500 550 230 520 0 610 Z" fill="%23efeff1"/><path d="M0 720 C280 640 520 680 760 810 C1000 950 1290 1000 1600 930 L1600 1200 L0 1200 Z" fill="%23e8e8eb"/></svg>');
      animation: waveDriftOne 26s ease-in-out infinite alternate;
    }

    body::after {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 1200"><rect width="1600" height="1200" fill="transparent"/><path d="M0 180 C240 90 520 130 770 280 C1020 430 1270 470 1600 360" fill="none" stroke="%23dfe0e3" stroke-width="110" stroke-linecap="round" opacity="0.7"/><path d="M0 500 C260 410 520 450 760 610 C1000 770 1280 820 1600 720" fill="none" stroke="%23ececef" stroke-width="120" stroke-linecap="round" opacity="0.78"/><path d="M0 860 C250 780 520 800 760 930 C1010 1070 1290 1110 1600 1030" fill="none" stroke="%23e3e4e7" stroke-width="130" stroke-linecap="round" opacity="0.82"/></svg>');
      z-index: -1;
      opacity: .75;
      animation: waveDriftTwo 34s ease-in-out infinite alternate;
    }

    @keyframes waveDriftOne {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(0, 22px, 0) scale(1.015); }
    }

    @keyframes waveDriftTwo {
      0% { transform: translate3d(0, 0, 0) scale(1.01); }
      100% { transform: translate3d(0, -18px, 0) scale(1.03); }
    }

    img, svg, iframe { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--green-900);
      color: rgba(255,255,255,.9);
      font-size: 14px;
    }

    .topbar .container {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .topbar-left {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    .topbar-right {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(14px);
      background: rgba(255,255,255,.93);
      border-bottom: 1px solid rgba(11, 79, 45, 0.08);
      transition: background 1.5s ease, border-color 1.5s ease;
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
      font-weight: 800;
      color: var(--green-900);
      letter-spacing: .03em;
    }

    .brand-mark {
      width: 168px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--green-900), var(--green-700));
      display: grid;
      place-items: center;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 8px 14px;
      flex: 0 0 auto;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 10px;
    }

    .brand-text {
      display: none;
    }

    .btn-noticias{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--slate-700);
      font-weight: 600;
    }

    .nav-links a:hover { color: var(--green-800); }

    .actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .theme-toggle-wrap {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 42px;
      padding: 0 14px 0 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: none;
      transition: background 1.5s ease, border-color 1.5s ease, color 1.5s ease;
    }

    .theme-toggle-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      white-space: nowrap;
      transition: color 1.5s ease;
    }

    .lang-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.12);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all .25s ease;
    }

    .lang-toggle:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.18);
    }

    .theme-toggle {
      position: relative;
      width: 64px;
      height: 34px;
      border-radius: 999px;
      border: none;
      background: #d1d5db;
      cursor: pointer;
      transition: background 0.4s ease;
      display: inline-flex;
      align-items: center;
      padding: 4px;
      flex: 0 0 auto;
    }

    .theme-toggle::after {
      content: '';
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #ffffff;
      position: absolute;
      left: 4px;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    html[data-theme="dark"] .theme-toggle {
      background: #22c55e;
    }

    html[data-theme="dark"] .theme-toggle::after {
      transform: translateX(30px);
    }

    html[data-theme="dark"] .theme-toggle-wrap {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.16);
    }

    html[data-theme="dark"] .theme-toggle-label {
      color: #eef4f6;
    }

    .theme-toggle span {
      display: none;
    }

    html[data-theme="dark"] body {
      color: #e8eef0;
      background-color: #0b1216;
    }

    html[data-theme="dark"] body::before {
      opacity: .22;
      filter: brightness(.38) contrast(1.1);
    }

    html[data-theme="dark"] body::after {
      opacity: .18;
      filter: brightness(.45);
    }

    html[data-theme="dark"] .header {
      background: rgba(10,16,20,.9);
      border-bottom-color: rgba(255,255,255,.08);
    }

    html[data-theme="dark"] .nav-links,
    html[data-theme="dark"] .brand,
    html[data-theme="dark"] .theme-toggle {
      color: #eef4f6;
    }

    html[data-theme="dark"] .theme-toggle-wrap {
      color: #eef4f6;
    }

    html[data-theme="dark"] .theme-toggle {
      background: #142129;
      border-color: rgba(255,255,255,.1);
    }

    html[data-theme="dark"] .card,
    html[data-theme="dark"] .hero-card,
    html[data-theme="dark"] .legal-modal-panel,
    html[data-theme="dark"] .about-overlay {
      background: #132029;
      color: #eaf0f2;
      border-color: rgba(255,255,255,.08);
      transition: background 1.5s ease, color 1.5s ease, border-color 1.5s ease;
    }

    html[data-theme="dark"] .card h3,
    html[data-theme="dark"] .hero-card h3,
    html[data-theme="dark"] .section-head h2,
    html[data-theme="dark"] .about-word,
    html[data-theme="dark"] .service-modal-point strong,
    html[data-theme="dark"] .legal-modal-head h3 {
      color: #ffffff;
    }

    html[data-theme="dark"] .card p,
    html[data-theme="dark"] .hero-card p,
    html[data-theme="dark"] .section-head p,
    html[data-theme="dark"] .about-overlay p,
    html[data-theme="dark"] .service-modal-point span,
    html[data-theme="dark"] .legal-modal-body,
    html[data-theme="dark"] .legal-modal-head p {
      color: rgba(232,238,240,.82);
    }

    html[data-theme="dark"] .mini-item,
    html[data-theme="dark"] .service-modal-point,
    html[data-theme="dark"] .legal-highlight,
    html[data-theme="dark"] .field,
    html[data-theme="dark"] textarea,
    html[data-theme="dark"] select {
      background: #1a2a33;
      color: #eef4f6;
      border-color: rgba(255,255,255,.08);
      transition: background 1.5s ease, color 1.5s ease, border-color 1.5s ease;
    }

    html[data-theme="dark"] .quote-section {
      background: linear-gradient(180deg, #0f171c 0%, #121d24 100%);
      transition: background 1.5s ease;
    }

    html[data-theme="dark"] .news-body small,
    html[data-theme="dark"] .section-head .eyebrow,
    html[data-theme="dark"] .about-overlay small {
      color: #dbe6ea;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: .25s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green-800), var(--green-900));
      color: var(--white);
      box-shadow: var(--shadow);
      min-width: 210px;
      padding: 0 26px;
    }

    .btn-outline {
      border-color: rgba(255,255,255,.16);
      color: var(--white);
      background: linear-gradient(135deg, var(--green-800), var(--green-900));
      box-shadow: var(--shadow);
    }

    .btn-light {
      border-color: rgba(11, 79, 45, 0.14);
      color: var(--white);
      background: linear-gradient(135deg, var(--green-800), var(--green-900));
      box-shadow: var(--shadow);
      min-width: 210px;
      padding: 0 26px;
    }

    .btn-primary:hover,
    .btn-light:hover,
    .btn-outline:hover,
    .social-link:hover,
    .map-link:hover {
      transform: translateY(-2px);
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: none;
    }

    .hero-bg-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .hero-bg-slide.active {
      opacity: 1;
    }

    .hero-bg-slide-1 { background-image: linear-gradient(90deg, rgba(7, 39, 24, 0.88) 0%, rgba(7, 39, 24, 0.74) 42%, rgba(7,39,24,0.42) 100%), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80'); }
    .hero-bg-slide-2 { background-image: linear-gradient(90deg, rgba(7, 39, 24, 0.88) 0%, rgba(7, 39, 24, 0.74) 42%, rgba(7,39,24,0.42) 100%), url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?auto=format&fit=crop&w=1600&q=80'); }
    .hero-bg-slide-3 { background-image: linear-gradient(90deg, rgba(7, 39, 24, 0.88) 0%, rgba(7, 39, 24, 0.74) 42%, rgba(7,39,24,0.42) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80'); }
    .hero-bg-slide-4 { background-image: linear-gradient(90deg, rgba(7, 39, 24, 0.88) 0%, rgba(7, 39, 24, 0.74) 42%, rgba(7,39,24,0.42) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80'); }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 20%, rgba(211,168,31,.18), transparent 28%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 36px;
      align-items: center;
      min-height: 86vh;
      padding: 48px 0 64px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--white);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: .98;
      margin: 0;
      max-width: 11ch;
    }

    .hero p {
      max-width: 58ch;
      color: rgba(255,255,255,.88);
      font-size: 18px;
      margin: 18px 0 28px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .stat {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 190px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      padding: 18px;
      backdrop-filter: blur(10px);
      cursor: pointer;
      overflow: hidden;
    }

    .stat::after {
      content: 'Ver más';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      margin-top: 16px;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--green-800), var(--green-900));
      border: 1px solid transparent;
      color: rgba(255,255,255,.98);
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      box-shadow: var(--shadow);
    }

    .stat strong {
      display: block;
      font-size: 1.5rem;
      margin-bottom: 4px;
    }

    .hero-card {
      background: rgba(255,255,255,.96);
      color: var(--slate-900);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
    }

    .hero-card h3 {
      margin: 0 0 8px;
      color: var(--green-900);
      font-size: 1.6rem;
    }

    .hero-card p {
      color: var(--slate-700);
      margin: 0 0 18px;
      font-size: 15px;
    }

    .mini-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 22px;
    }

    .mini-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px 14px;
      border-radius: 16px;
      background: var(--green-100);
    }

    .mini-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: var(--green-900);
      color: var(--white);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-weight: 800;
    }

    .mini-icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      stroke: currentColor;
    }

    section { padding: 92px 0; }

    .section-head {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .section-head .eyebrow { color: var(--green-800); }
    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(1.65rem, 3.2vw, 2.35rem);
      line-height: 1.08;
      color: var(--green-900);
    }
    .section-head p {
      margin: 0;
      color: var(--slate-700);
      font-size: 18px;
    }

    .service-grid,
    .feature-grid,
    .news-grid,
    .contact-grid {
      display: grid;
      gap: 22px;
    }

    .feature-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: -72px;
      position: relative;
      z-index: 2;
    }

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

    .news-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 26px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(11, 79, 45, 0.06);
      transition: transform .35s ease, box-shadow .35s ease, opacity .7s ease, filter .7s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(11,79,45,.18);
    }

    .feature-card {
      background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
    }

    .card-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--green-100);
      color: var(--green-900);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.25rem;
      color: var(--green-900);
    }

    .card p {
      margin: 0;
      color: var(--slate-700);
    }

    .about-wrap {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 30px;
      align-items: center;
    }

    .about-slider {
      position: relative;
      min-height: 540px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #0b4f2d;
      isolation: isolate;
    }

    .about-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.8s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .about-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,39,24,.18), rgba(7,39,24,.52));
    }

    .about-slide.active {
      opacity: 1;
    }

    .about-slide-1 { background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1400&q=80'); }
    .about-slide-2 { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80'); }
    .about-slide-3 { background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1400&q=80'); }
    .about-slide-4 { background-image: url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?auto=format&fit=crop&w=1400&q=80'); }
    .about-slide-5 { background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1400&q=80'); }
    .about-slide-6 { background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=80'); }

    .about-overlay {
      position: absolute;
      left: 28px;
      bottom: 28px;
      z-index: 2;
      max-width: min(82%, 420px);
      background: rgba(255,255,255,.82);
      color: var(--green-900);
      border-radius: 24px;
      padding: 24px 24px 22px;
      box-shadow: 0 16px 32px rgba(0,0,0,.16);
    }

    .about-overlay small {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--green-800);
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .about-word {
      min-height: 58px;
      margin: 0 0 10px;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      line-height: 1;
      color: var(--green-900);
    }

    .about-overlay p {
      margin: 0;
      color: var(--slate-700);
      font-size: 15px;
    }

    .about-dots {
      display: flex;
      gap: 8px;
      margin-top: 16px;
    }

    .about-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(11,79,45,.22);
      transition: .25s ease;
      cursor: pointer;
      border: 0;
      padding: 0;
    }

    .about-dot.active {
      width: 28px;
      border-radius: 999px;
      background: var(--gold-500);
    }

    .bullets {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .bullet {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--slate-700);
    }

    .bullet strong { color: var(--slate-900); }

    .tick {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gold-500);
      color: var(--white);
      display: grid;
      place-items: center;
      margin-top: 2px;
      flex: 0 0 auto;
      font-size: 14px;
      font-weight: 800;
    }

    .service-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      color: var(--white);
      isolation: isolate;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(4,24,15,.15), rgba(4,24,15,.78));
      z-index: -1;
    }

    .service-card small {
      color: #f4d87c;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    .service-card h3,
    .service-card p { color: var(--white); }

    .service-1 { background-image: url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?auto=format&fit=crop&w=1200&q=80'); }
    .service-2 { background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80'); }
    .service-3 { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80'); }
    .service-4 { background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200&q=80'); }

    .quote-section {
      background: linear-gradient(180deg, #f1f7f3 0%, #ffffff 100%);
    }

    .quote-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .quote-info {
      position: sticky;
      top: 110px;
      height: 100%;
    }

    .quote-panel {
      background: linear-gradient(180deg, #0f5f34 0%, #0b4f2d 100%);
      color: var(--white);
      border-radius: 30px;
      padding: 30px;
      box-shadow: var(--shadow);
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .quote-panel h3 {
      margin: 0 0 10px;
      font-size: 2rem;
    }

    .quote-panel p { color: rgba(255,255,255,.85); }

    .contact-points {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .contact-point {
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 12px;
      align-items: start;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.08);
      padding: 14px;
      border-radius: 18px;
    }

    .contact-point strong {
      color: var(--white);
    }

    .contact-point span { color: rgba(255,255,255,.86); }

    form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .field,
    textarea,
    select {
      width: 100%;
      border: 1px solid #d6e3da;
      border-radius: 16px;
      min-height: 56px;
      padding: 14px 16px;
      font: inherit;
      background: var(--white);
      color: var(--slate-900);
      outline: none;
    }

    .field:focus,
    textarea:focus,
    select:focus {
      border-color: var(--green-700);
      box-shadow: 0 0 0 4px rgba(18, 120, 60, 0.12);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
      grid-column: 1 / -1;
      padding-top: 16px;
    }

    .full { grid-column: 1 / -1; }

    .news-card {
      padding: 0;
      overflow: hidden;
    }

    .news-image {
      aspect-ratio: 16 / 10;
      background-size: cover;
      background-position: center;
    }

    .news-body { padding: 22px; }
    .news-body small {
      color: var(--green-800);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    .news-1 { background-image: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80'); }
    .news-2 { background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1200&q=80'); }
    .news-3 { background-image: url('https://images.unsplash.com/photo-1518527989017-5baca7a58d3c?auto=format&fit=crop&w=1200&q=80'); }

    .contact-card,
    .map-card {
      min-height: 100%;
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .social-link,
    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 16px;
      border-radius: 999px;
      background: var(--green-100);
      color: var(--green-900);
      font-weight: 700;
      transition: .25s ease;
    }

    .social-icon {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .map-card {
      padding: 0;
      overflow: hidden;
    }

    .map-head {
      padding: 24px 24px 16px;
      border-bottom: 1px solid rgba(11,79,45,.08);
    }

    .map-frame {
      width: 100%;
      height: 390px;
      border: 0;
    }

    .map-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 18px 24px 24px;
    }

    .footer {
      padding: 64px 0 28px;
      background: linear-gradient(180deg, #0a3a22 0%, #072b19 100%);
      color: rgba(255,255,255,.84);
    }

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

    .footer-brand {
      max-width: 320px;
    }

    .footer-logo {
      width: min(240px, 100%);
      margin-bottom: 22px;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-bottom {
      color: rgba(255,255,255,.72);
    }

    .footer-title {
      margin: 0 0 22px;
      color: var(--white);
      font-size: 1.55rem;
      font-weight: 800;
    }

    .footer-col h4 {
      margin: 0 0 18px;
      color: var(--white);
      font-size: 1.35rem;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
      display: grid;
      gap: 14px;
    }

    .footer-links a,
    .footer-contact a {
      transition: .25s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: var(--white);
      transform: translateX(4px);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .footer-contact-item svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      margin-top: 3px;
      color: rgba(255,255,255,.55);
    }

    .footer-social {
      margin-top: 24px;
      grid-template-columns: repeat(4, 44px);
    }

    .footer-social a {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(255,255,255,.08);
      color: var(--white);
      transition: .25s ease;
      padding: 0;
    }

    .footer-social a:hover {
      background: rgba(255,255,255,.16);
      transform: translateY(-2px);
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
      padding-top: 28px;
      font-size: 15px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      cursor: pointer;
      transition: .25s ease;
    }

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

    .legal-modal {
      position: fixed;
      inset: 0;
      background: rgba(4, 18, 11, .72);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: .3s ease;
      z-index: 120;
    }

    .legal-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .legal-modal-panel {
      width: min(820px, 100%);
      max-height: min(88vh, 900px);
      overflow: auto;
      background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
      border-radius: 28px;
      box-shadow: 0 28px 60px rgba(0,0,0,.28);
      border: 1px solid rgba(11, 79, 45, .08);
    }

    .legal-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding: 28px 28px 20px;
      border-bottom: 1px solid rgba(11, 79, 45, .08);
      position: sticky;
      top: 0;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      z-index: 2;
    }

    .legal-modal-head h3 {
      margin: 0 0 8px;
      color: var(--green-900);
      font-size: clamp(1.6rem, 3vw, 2.1rem);
    }

    .legal-modal-head p {
      margin: 0;
      color: var(--slate-700);
    }

    .legal-close {
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 14px;
      background: var(--green-100);
      color: var(--green-900);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .legal-close:hover {
      background: #e3f1e8;
    }

    .legal-modal-body {
      padding: 26px 28px 30px;
      color: var(--slate-700);
    }

    .legal-modal-body h4 {
      margin: 0 0 8px;
      color: var(--green-900);
      font-size: 1.08rem;
    }

    .legal-modal-body p {
      margin: 0 0 18px;
    }

    .legal-highlight {
      padding: 16px 18px;
      margin-bottom: 18px;
      border-radius: 18px;
      background: rgba(11, 79, 45, .06);
      border: 1px solid rgba(11, 79, 45, .08);
      color: var(--slate-900);
    }

    .service-card {
      cursor: pointer;
    }

    .service-card h3 {
      font-size: 1.45rem;
      margin-bottom: 12px;
    }

    .service-card p {
      max-width: 28ch;
      font-size: 1rem;
      line-height: 1.65;
    }

    .service-card::after {
      content: 'Ver más';
      position: absolute;
      right: 22px;
      bottom: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--green-800), var(--green-900));
      border: 1px solid transparent;
      color: rgba(255,255,255,.98);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .02em;
      box-shadow: var(--shadow);
    }

    .service-card:hover::after {
      background: rgba(255,255,255,.18);
    }

    .service-modal-image {
      width: 100%;
      aspect-ratio: 16 / 8.5;
      background-size: cover;
      background-position: center;
      border-radius: 22px;
      margin-bottom: 22px;
      overflow: hidden;
    }

    .service-modal-intro {
      font-size: 1.06rem;
      color: var(--slate-900);
      margin-bottom: 18px;
    }

    .service-modal-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .service-modal-point {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(11, 79, 45, .05);
      border: 1px solid rgba(11, 79, 45, .08);
    }

    .service-modal-point strong {
      display: block;
      margin-bottom: 6px;
      color: var(--green-900);
    }

    .service-modal-point span {
      display: block;
      color: var(--slate-700);
      line-height: 1.6;
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #25d366;
      color: white;
      box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
      z-index: 40;
    }

    .whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      filter: blur(4px);
    }

    .reveal.reveal-left { transform: translateX(-36px); }
    .reveal.reveal-right { transform: translateX(36px); }
    .reveal.reveal-scale { transform: scale(.94); }

    .reveal.visible {
      opacity: 1;
      transform: none;
      filter: blur(0);
      transition: opacity .8s ease, transform .8s ease, filter .8s ease;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      body::before,
      body::after,
      .reveal,
      .reveal.visible,
      .card,
      .btn,
      .social-link,
      .map-link { transition: none !important; transform: none !important; filter: none !important; opacity: 1 !important; animation: none !important; }
    }

    @media (max-width: 1080px) {
      .service-grid,
      .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-grid,
      .about-wrap,
      .quote-wrap,
      .footer-grid { grid-template-columns: 1fr; }
      .quote-info { position: static; }
      .footer-brand { max-width: none; }
      .about-slider { min-height: 460px; }
    }

    @media (max-width: 760px) {
      .nav { min-height: 70px; }
      .mobile-toggle { display: inline-block; }
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(11, 79, 45, 0.08);
        padding: 18px 16px 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links.open { display: flex; }
      .topbar-right { justify-content: center; }
      .actions .btn-light { display: none; }
      .actions .btn-primary { display: none; }
      .hero-grid { min-height: auto; padding: 54px 0 70px; }
      .stats,
      .feature-grid,
      .service-grid,
      .news-grid,
      form,
      .service-modal-grid { grid-template-columns: 1fr; }
      .topbar .container,
      .footer-bottom { justify-content: center; text-align: center; }
      .hero-card,
      .quote-panel,
      .card { padding: 22px; }
      section { padding: 76px 0; }
      .map-frame { height: 300px; }
      .footer {
        padding-top: 52px;
      }
      .footer-grid {
        gap: 28px;
      }
      .footer-bottom-links {
        justify-content: center;
      }
      .footer-social {
        grid-template-columns: repeat(4, 44px);
      }
    }
