:root {
            --verde-oscuro: #053f2c;
            --verde-medio: #079a51;
            --verde-lima: #a8cf22;
            --verde-suave: #eaf6df;
            --texto: #1f2a24;
            --blanco: #ffffff;
            --gris: #f6f8f5;
            --sombra: 0 18px 45px rgba(5, 63, 44, 0.15);
            --radio: 24px;
        }

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

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--texto);
            background: var(--blanco);
            line-height: 1.6;
        }

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

        .contenedor {
            width: min(1120px, 92%);
            margin: 0 auto;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(5, 63, 44, 0.08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            gap: 20px;
        }

        .marca {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            color: var(--verde-oscuro);
            letter-spacing: 0.5px;
        }

        .marca img {
            width: 52px;
            height: auto;
            display: block;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: 24px;
            font-weight: 700;
            color: var(--verde-oscuro);
            font-size: 15px;
        }

        .boton {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--verde-medio);
            color: var(--blanco);
            padding: 13px 20px;
            border-radius: 999px;
            font-weight: 800;
            box-shadow: 0 10px 25px rgba(7, 154, 81, 0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .boton:hover {
            transform: translateY(-2px);
            background: var(--verde-oscuro);
            box-shadow: 0 16px 35px rgba(5, 63, 44, 0.25);
        }

        .boton.secundario {
            background: var(--blanco);
            color: var(--verde-oscuro);
            border: 2px solid rgba(5, 63, 44, 0.12);
            box-shadow: none;
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top right, rgba(168, 207, 34, 0.25), transparent 28%),
                linear-gradient(135deg, #ffffff 0%, #f5fbef 52%, #e9f7ee 100%);
            padding: 90px 0 80px;
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(7, 154, 81, 0.08);
            right: -140px;
            bottom: -180px;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 60px;
        }

        .etiqueta {
            display: inline-block;
            background: var(--verde-suave);
            color: var(--verde-oscuro);
            padding: 8px 14px;
            border-radius: 999px;
            font-weight: 800;
            margin-bottom: 18px;
            font-size: 14px;
        }

        h1 {
            font-size: clamp(42px, 6vw, 72px);
            line-height: 0.95;
            color: var(--verde-oscuro);
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 19px;
            max-width: 640px;
            margin-bottom: 30px;
            color: #35433b;
        }

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

        .tarjeta-logo {
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(5, 63, 44, 0.10);
            border-radius: 36px;
            box-shadow: var(--sombra);
            padding: 34px;
            text-align: center;
        }

        .tarjeta-logo img {
            width: min(360px, 100%);
            height: auto;
            display: block;
            margin: 0 auto;
        }

        section {
            padding: 76px 0;
        }

        .titulo-seccion {
            max-width: 720px;
            margin-bottom: 36px;
        }

        .titulo-seccion h2 {
            color: var(--verde-oscuro);
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .titulo-seccion p {
            color: #53635a;
            font-size: 18px;
        }

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

        .card {
            background: var(--blanco);
            border: 1px solid rgba(5, 63, 44, 0.10);
            border-radius: var(--radio);
            padding: 28px;
            box-shadow: 0 12px 30px rgba(5, 63, 44, 0.08);
        }

        .icono {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--verde-lima), var(--verde-medio));
            margin-bottom: 18px;
        }

        .card h3 {
            color: var(--verde-oscuro);
            font-size: 22px;
            margin-bottom: 10px;
        }

        .sobre {
            background: var(--gris);
        }

        .sobre-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            align-items: center;
            gap: 50px;
        }

        .panel {
            background: var(--verde-oscuro);
            color: var(--blanco);
            border-radius: 34px;
            padding: 36px;
            box-shadow: var(--sombra);
        }

        .panel h2 {
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .lista {
            display: grid;
            gap: 14px;
            margin-top: 24px;
        }

        .lista li {
            list-style: none;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .lista li::before {
            content: "✓";
            flex: 0 0 28px;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--verde-lima);
            color: var(--verde-oscuro);
            font-weight: 900;
        }

        .foto-simulada {
            min-height: 420px;
            border-radius: 34px;
            background:
                linear-gradient(rgba(5, 63, 44, 0.38), rgba(5, 63, 44, 0.25)),
                url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            box-shadow: var(--sombra);
        }

        .contacto {
            background: linear-gradient(135deg, var(--verde-oscuro), #075f3c);
            color: var(--blanco);
            text-align: center;
        }

        .contacto h2 {
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .contacto p {
            max-width: 720px;
            margin: 0 auto 28px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 18px;
        }

        .datos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-top: 24px;
        }

        .dato {
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 999px;
            padding: 10px 16px;
        }

        footer {
            background: #03291d;
            color: rgba(255, 255, 255, 0.80);
            padding: 24px 0;
            text-align: center;
            font-size: 14px;
        }

        .whatsapp-flotante {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 20;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            color: var(--blanco);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 860px) {
            .menu {
                display: none;
            }

            .hero-grid,
            .sobre-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .hero {
                padding: 62px 0;
            }

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

            .tarjeta-logo {
                padding: 24px;
            }
        }