body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
}

/* HERO */
/* HERO PREMIUM */
/* HERO CON IMAGEN */
.hero {
    position: relative;
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1588776814546-ec7e6b0f54f3') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OSCURECER IMAGEN */
.hero-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}

/* CONTENIDO GLASS */
.hero-content {
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 600px;
}

/* TEXTO */
.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
}

/* INPUT + BOTÓN */
.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions input {
    padding: 12px;
    border-radius: 30px;
    border: none;
    width: 250px;
}

.btn-cta {
    background: #00c896;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-cta:hover {
    background: #00a67d;
}

/* BENEFICIOS */
.beneficios {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ✨ ANIMACIONES */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 0.8s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 480px) {

    .hero {
        height: auto;
        padding: 40px 15px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions input,
    .btn-cta {
        width: 100%;
    }
}/* ACCIONES */
.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions input {
    padding: 12px;
    border-radius: 30px;
    border: none;
    width: 250px;
}

.btn-cta {
    background: #00c896;
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: bold;
}

.btn-cta:hover {
    background: #00a67d;
}

/* BENEFICIOS */
.beneficios {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

/* FILTROS */
.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

select {
    padding: 10px;
    border-radius: 8px;
}

/* GRID */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* CARD PREMIUM */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.rating {
    color: gold;
}

.precio {
    font-weight: bold;
    margin: 10px 0;
}

/* BOTONES */
button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1e3a5f;
    color: white;
    cursor: pointer;
}

.cancelar {
    background: gray;
    margin-top: 10px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    padding: 20px;
    width: 320px;
    margin: 100px auto;
    border-radius: 12px;
}

/* 📱 TABLET */
@media (max-width: 768px) {

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero input {
        width: 90%;
    }

    .filtros {
        flex-direction: column;
        align-items: center;
    }

    select {
        width: 90%;
    }

    .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* 📱 CELULAR */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
    }

    .card img {
        height: 140px;
    }

    .card-body h3 {
        font-size: 16px;
    }

    .modal-content {
        width: 90%;
        margin: 50px auto;
    }

    button {
        font-size: 14px;
    }
}
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}
/* INPUTS PREMIUM */
.input-group {
    display: flex;
    align-items: center;
    background: #f1f3f6;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 10px 0;
    border: 1px solid transparent;
    transition: 0.2s;
}

.input-group span {
    margin-right: 10px;
    font-size: 18px;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

/* EFECTO FOCUS */
.input-group:focus-within {
    border: 1px solid #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.2);
}
@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions input {
        width: 100%;
    }

    .btn-cta {
        width: 100%;
    }
}