:root{

    --color-primary:#73c66d;          /* Verde manzana */

    --color-primary-light:#e8f8e4;    /* Verde muy claro */

    --color-text:#666;

    --color-title:#222;

    --color-bg:#fcfcfc;

    --color-white:#fff;

    --radius:30px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

    body{
        font-family:'Montserrat', sans-serif;
        background:var(--color-bg);
        color:var(--color-text);
    }

    .section{
        padding:100px 0;
        min-height: 90vh;
    }

    .titulo-seccion{
        font-size:clamp(2rem, 5vw, 4rem);
        font-weight:700;
        color:var(--color-title);
        margin-bottom:1rem;
    }

    .texto-seccion{
        font-size:1.1rem;
        line-height:1.9;
    }

    .btn-pill{
        border-radius:999px;
        padding:14px 32px;
        font-weight:600;
    }

    .btn-primary-custom{
        background:var(--color-primary);
        color:#fff;
        border:none;
    }

    .btn-primary-custom:hover{
        background:var(--color-primary);
        color:#fff;
        transform:translateY(-2px);
    }

    .btn-outline-custom{
        background:#fff;
        color:var(--color-title);
        border:1px solid #e5e5e5;
    }

            /* NAVBAR */
        .custom-navbar{
            background:rgba(248,248,248,.82);
            backdrop-filter:blur(12px);
            border-bottom:1px solid rgba(0,0,0,.05);
            transition:.3s;
            z-index:999;
        }

        .logo{
            font-size:1.6rem;
            font-weight:800;
            letter-spacing:.08em;
            color:var(--color-title) !important;
            text-decoration:none;
        }

        .nav-custom{
            color:var(--color-title) !important;
            font-weight:600;
            transition:.3s;
            position:relative;
        }

        .nav-custom:hover{
            color:var(--color-primary) !important;
        }

        /* Línea hover elegante
        .nav-custom::after{
            content:'';
            position:absolute;
            left:0;
            bottom:0;
            width:0%;
            height:2px;
            background:var(--color-primary);
            transition:.3s;
        }

        .nav-custom:hover::after{
            width:100%;
        } */

        /* Dropdown */
        .dropdown-menu{
            min-width:220px;
        }

        .dropdown-item{
            font-weight:500;
        }

        .dropdown-item:hover{
            background:var(--color-primary-light);
            color:var(--color-title);
        }

        /* Para que no tape el hero */
        body{
            padding-top:80px;
        }

    .hero{
        background:linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    }

    .hero h1{
        font-size:clamp(2.5rem, 6vw, 4.5rem);
        font-weight:800;
        color:var(--color-title);
        line-height:1.1;
    }

    .hero-card,
    .modelo-card,
    .box{
        background:#fff;
        border-radius:var(--radius);
        box-shadow:var(--shadow);
    }

    .hero-card{
        padding:1rem;
    }

    .hero-card img,
    .modelo-card img{
        width:100%;
        border-radius:22px;
        object-fit:cover;
    }

    .hero-card img{
        height:520px;
    }

    .modelo-card{
        overflow:hidden;
        transition:.3s;
        max-width:450px;
        margin:auto;
    }

    .modelo-card img{
        max-height:500px;
        object-fit:contain;
        background:#fff;
    }

    .modelo-card:hover{
        transform:translateY(-5px);
    }

    .modelo-body{
        padding:2rem;
    }

    .botonesModelos{
        justify-content: center;
    }

    .check-list{
        list-style:none;
        padding-left:0;
    }

    .check-list li{
        margin-bottom:1rem;
        display:flex;
        gap:.75rem;
        align-items:flex-start;
    }

    .check-list li::before{
        content:'✓';
        color:var(--color-primary);
        font-weight:700;
    }

    .step-number{
        width:50px;
        height:50px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        margin:0 auto 1rem;
        background:var(--color-primary);
        color:#fff;
        font-weight:700;
    }

    .cta{
        background:linear-gradient(135deg, var(--color-primary), #b3ddb0);
        color:#fff;
        border-radius:40px;
        padding:4rem 2rem;
        box-shadow:0 20px 50px rgba(215,90,138,.25);
    }

    .bg-soft{
        background:var(--color-primary-light);
    }

        /* FOOTER */
        .footer{
            background:rgba(248,248,248,.82);
            padding:70px 0 35px;
            border-top:1px solid rgba(0,0,0,.06);
        }

        .footer-logo{
            font-size:2rem;
            font-weight:800;
            letter-spacing:.08em;
            color:var(--color-title);
            margin-bottom:1rem;
        }

        .footer-copy{
            font-size:.95rem;
            color:#999;
        }

    @media (max-width:768px){
        .section{
            padding:80px 0;
        }

        .hero-card img{
            height:380px;
        }

        .cta{
            padding:3rem 1.5rem;
        }
    }