:root {
            --verde: #5f7f3f;
            --verde-oscuro: #3f5d35;
            --verde-footer: #3f5834;
            --verde-suave: #dfe6c9;
            --crema: #f7f4e9;
            --crema-2: #fbfaf5;
            --texto: #2e2e2b;
            --texto-suave: #4f504a;
            --blanco: rgba(255,255,255,.88);
            --linea: rgba(95,127,63,.28);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--texto);
            background:
                radial-gradient(circle at 50% 20%, rgba(255,255,255,.9), transparent 42%),
                linear-gradient(180deg, #f8f6ec 0%, #f4f1e5 70%, #e4e8d4 100%);
            overflow-x: hidden;
        }

        body::before,
        body::after {
            content: "";
            position: fixed;
            z-index: 0;
            pointer-events: none;
            border-radius: 50%;
            background: rgba(95,127,63,.10);
            filter: blur(.2px);
        }

        body::before {
            width: 330px;
            height: 330px;
            top: -220px;
            right: -90px;
        }

        body::after {
            width: 250px;
            height: 350px;
            left: -170px;
            top: 440px;
        }

        .page {
            position: relative;
            z-index: 1;
            width: 100%;
            overflow: hidden;
        }

        /* Ambient decorative elements */
        .ambient {
            position: absolute;
            z-index: 0;
            pointer-events: none;
            color: rgba(95,127,63,.075);
            user-select: none;
        }

        .ambient.paw {
            font-size: 52px;
            line-height: 1;
        }

        .paw-1 { top: 48px; left: 22%; transform: rotate(-18deg); }
        .paw-2 { top: 92px; right: 23%; transform: rotate(18deg); font-size: 44px; }
        .paw-3 { top: 590px; right: 13%; transform: rotate(-10deg); font-size: 58px; }
        .paw-4 { top: 650px; left: 12%; transform: rotate(15deg); font-size: 42px; }

        .ambient-heart {
            font-size: 58px;
            color: rgba(95,127,63,.08);
        }

        .heart-1 { top: 350px; left: 13%; transform: rotate(-12deg); }
        .heart-2 { top: 405px; right: 10%; transform: rotate(12deg); }

        .ambient-line {
            position: absolute;
            width: 270px;
            height: 270px;
            border: 1px solid rgba(95,127,63,.08);
            border-radius: 44% 56% 50% 50%;
            transform: rotate(20deg);
        }

        .line-left { left: -135px; top: 70px; }
        .line-right { right: -150px; top: 115px; transform: rotate(-25deg); }

        .container {
            width: min(100%, 1000px);
            margin: 0 auto;
            padding: 58px 28px 0;
            text-align: center;
            position: relative;
        }

        /* Logo */
        .header {
            position: relative;
            z-index: 2;
            margin-bottom: 30px;
        }

        .logo {
            display: block;
            width: min(250px, 76vw);
            height: auto;
            margin: 0 auto;
        }

        /* Hero */
        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ee605e;
            color: #fff;
            padding: 15px 20px;
            border-radius: 15px;
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5 px;
            box-shadow: 0 5px 14px rgba(63,93,53,.12);
        }

        .hero {
            position: relative;
            z-index: 2;
            max-width: 780px;
            margin: 0 auto 42px;
        }

        .hero h1 {
            font-size: clamp(38px, 5vw, 55px);
            line-height: 1.12;
            letter-spacing: -1.8px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--texto);
        }

        .hero h1 span {
            position: relative;
            color: #04716c;
            display: inline-block;
        }

        .hero h1 span::after {
            content: "";
            position: absolute;
            left: -5px;
            right: -5px;
            bottom: -7px;
            height: 8px;
            border-bottom: 3px solid #fa756a;
            border-radius: 50%;
            transform: rotate(-1deg);
        }

        .hero p {
            max-width: 650px;
            margin: 0 auto;
            color: var(--texto);
            font-size: 17px;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Features */
        .section-divider {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 26px;
            color: #04766f;
            font-size: 15px;
            font-weight: 800;
            text-transform: uppercase;
            margin: 0 auto 18px;
            white-space: nowrap;
        }

        .section-divider::before,
        .section-divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: var(--linea);
        }

        .features-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            width: 100%;
            margin-bottom: 5px;
        }

        .feature-card {
            /*min-height: 214px;*/
            padding: 28px 14px 22px;
            background: rgba(255,255,255,.78);
            border: 1px solid rgba(255,255,255,.9);
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 8px 24px rgba(63,93,53,.045);
            backdrop-filter: blur(4px);
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 28px rgba(63,93,53,.10);
        }

        .feature-icon {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--verde);
            margin-bottom: 12px;
        }

        .feature-icon svg {
            width: 48px;
            height: 48px;
            fill: currentColor;
        }

        .feature-card h3 {
            color: var(--texto);
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--texto);
            font-size: 0.9rem;
          /*  line-height: 1.55;*/
            max-width: 225px;
        }

        /* CTA + animals */
        .lower-section {
            position: relative;
            z-index: 2;
            min-height: 365px;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-top: 8px;
        }

        .side-image {
            position: relative;
            z-index: 2;
            width: 285px;
            max-width: 32%;
            height: auto;
            object-fit: contain;
            align-self: flex-end;
            filter: drop-shadow(0 9px 8px rgba(55,65,35,.10));
        }

        .side-image.left {
            margin-right: -34px;
        }

        .side-image.right {
            margin-left: -34px;
        }

        .cta-box {
            position: relative;
            z-index: 3;
            width: min(560px, 65%);
            min-height: 265px;
            background: rgba(255,255,255,.88);
            border: 1px solid rgba(255,255,255,.95);
            border-radius: 24px;
            padding: 26px 38px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 35px rgba(63,93,53,.08);
            backdrop-filter: blur(5px);
            margin-bottom: 25px;
        }

        .cta-icon-mail {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef1df;
            color: var(--verde);
            border-radius: 50%;
            margin-bottom: 13px;
        }

        .cta-icon-mail svg {
            width: 29px;
            height: 29px;
        }

        .cta-box h2 {
            font-size: 21px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-box p {
            font-size: 13px;
            line-height: 1.55;
            margin-bottom: 15px;
        }

        .email-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--verde);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 17px;
        }

        .email-link:hover {
            text-decoration: underline;
        }

        .email-link svg {
            width: 25px;
            height: 25px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-icon {
            width: 31px;
            height: 31px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--verde);
            background: transparent;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            transition: transform .2s ease;
        }

        .social-icon:hover {
            transform: scale(1.12);
        }

        .social-icon svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .tagline {
            position: relative;
            z-index: 4;
            margin: -2px 0 34px;
            font-family: "Comic Sans MS", "Segoe Print", cursive;
            color: #333d2c;
            font-size: 18px;
            line-height: 1.4;
        }

        .tagline span {
            color: var(--verde);
            font-size: 25px;
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 5;
            width: 100%;
            background:#04716c;
            color: white;
            padding: 31px 28px 24px;
        }

        .footer-content {
            width: min(100%, 1200px);
            margin: 0 auto 23px;
            display: grid;
            grid-template-columns: 0.5fr 1.25fr 1.6fr;
            align-items: end;
            gap: 30px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,.20);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .footer-brand img {
            width: 115px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .footer-description {
            font-size: 1.2rem;
            line-height: 1.45;
            max-width: 500px;
            color: rgba(255,255,255,.94);
        }

        .footer-description strong {
            color: #fff;
        }

        .footer-features-list {
            display: flex;
            justify-content: flex-end;
            gap: 25px;
            font-size: 1rem;
            color: rgba(255,255,255,.96);
            white-space: nowrap;
        }

        .footer-feature {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .footer-feature svg {
            width: 23px;
            height: 23px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
        }

        .copyright {
            text-align: center;
            font-size: 11px;
            color: rgba(255,255,255,.92);
        }

        /* Tablet */
        @media (max-width: 1000px) {
            .container {
                padding-left: 22px;
                padding-right: 22px;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .feature-card {
                min-height: 190px;
            }

            .lower-section {
                min-height: 330px;
            }

            .side-image {
                width: 240px;
            }

            .cta-box {
                width: 62%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
            }

            .footer-description {
                max-width: 440px;
            }

            .footer-features-list {
                justify-content: center;
            }
        }

        /* Mobile */
        @media (max-width: 650px) {
            .container {
                padding: 35px 15px 0;
            }

            .header {
                margin-bottom: 23px;
            }

            .logo {
                width: min(285px, 80vw);
            }

            .badge {
                font-size: 12px;
                padding: 8px 16px;
            }

            .hero {
                margin-bottom: 34px;
            }

            .hero h1 {
                font-size: 34px;
                letter-spacing: -1px;
                margin-bottom: 24px;
            }

            .hero p {
                font-size: 14px;
                line-height: 1.65;
            }

            .section-divider {
                font-size: 11px;
                gap: 12px;
                white-space: normal;
                justify-content: center;
            }

            .section-divider::before,
            .section-divider::after {
                min-width: 25px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-bottom: 25px;
            }

            .feature-card {
                min-height: 190px;
                padding: 21px 11px 17px;
            }

            .feature-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 9px;
            }

            .feature-icon svg {
                width: 41px;
                height: 41px;
            }

            .feature-card h3 {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .feature-card p {
                font-size: 11px;
            }

            .lower-section {
                min-height: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: end;
                margin-top: 18px;
                padding-top: 0;
            }

            .cta-box {
                grid-column: 1 / -1;
                grid-row: 1;
                width: 92%;
                margin: 0 auto 50px;
                min-height: 270px;
                padding: 25px 20px;
            }

            .side-image {
                grid-row: 1;
                width: 170px;
                max-width: none;
                z-index: 4;
                margin-bottom: -12px;
            }

            .side-image.left {
                grid-column: 1;
                justify-self: start;
                margin-left: -25px;
                margin-right: 0;
            }

            .side-image.right {
                grid-column: 2;
                justify-self: end;
                margin-right: -25px;
                margin-left: 0;
            }

            .cta-box h2 {
                font-size: 18px;
            }

            .cta-box p {
                font-size: 12px;
            }

            .email-link {
                font-size: 17px;
            }

            .tagline {
                font-size: 15px;
                margin-top: 0;
                margin-bottom: 25px;
            }

            .footer-content {
                gap: 20px;
            }

            .footer-brand img {
                width: 105px;
            }

            .footer-features-list {
                flex-wrap: wrap;
                gap: 14px 22px;
                white-space: normal;
            }

            .ambient.paw {
                opacity: .6;
            }
        }

        @media (max-width: 390px) {
            .hero h1 {
                font-size: 30px;
            }

            .feature-card {
                min-height: 180px;
            }

            .email-link {
                font-size: 15px;
            }

            .side-image {
                width: 150px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                scroll-behavior: auto !important;
                transition: none !important;
            }
        }