*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(to bottom, #fffdf8, #fff6e9);
    color:#333;
    overflow-x:hidden;
}


/* DESTACADA */

.destacada{
    padding:90px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    background:linear-gradient(135deg, #fff4dc, #ffe9be);
    position:relative;
}

.destacada::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.25);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.texto-destacada{
    flex:1;
    z-index:2;
}

.texto-destacada span{
    color:#ea580c;
    font-weight:bold;
    letter-spacing:3px;
    font-size:14px;
}

.texto-destacada h2{
    font-size:58px;
    color:#d97706;
    margin:15px 0 25px;
    line-height:1.1;
}

.texto-destacada p{
    font-size:19px;
    line-height:1.8;
    color:#555;
}

.imagen-destacada{
    flex:1;
    display:flex;
    justify-content:center;
    z-index:2;
}

.imagen-destacada img{
    width:340px;
    height:530px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
    transition:0.4s;
}

.imagen-destacada img:hover{
    transform:translateY(-8px) scale(1.02);
}


/* HERO */

.hero{
    height:95vh;
    background:url("img/fondo2.webp") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
    backdrop-filter:blur(2px);
}

.contenido-hero{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
    animation:aparecer 1s ease;
}

.contenido-hero h1{
    font-size:68px;
    color:white;
    margin-bottom:25px;
    text-shadow:0 5px 20px rgba(0,0,0,0.4);
    line-height:1.1;
}

.contenido-hero p{
    font-size:24px;
    line-height:1.8;
    color:white;
    margin-bottom:40px;
}

.boton{
    display:inline-block;
    padding:17px 42px;
    background:linear-gradient(135deg, #f59e0b, #ea580c);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    letter-spacing:1px;
    box-shadow:0 10px 25px rgba(234,88,12,0.3);
    transition:0.35s;
}

.boton:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 15px 35px rgba(234,88,12,0.45);
}


/* CONTACTO */

.contacto{
    padding:90px 8%;
    text-align:center;
    background:white;
}

.contacto h2{
    font-size:48px;
    color:#d97706;
    margin-bottom:20px;
}

.contacto p{
    font-size:24px;
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}


/* SECCIONES */

.seccion{
    padding:110px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    transition:0.4s;
}

.reverse{
    flex-direction:row-reverse;
    background:#fff8eb;
}

.texto{
    flex:1;
}

.texto h2{
    font-size:52px;
    color:#d97706;
    margin-bottom:25px;
    line-height:1.1;
}

.texto p{
    font-size:21px;
    line-height:1.9;
    color:#555;
}

.imagen{
    flex:1;
    display:flex;
    justify-content:center;
}

.imagen img{
    width:340px;
    height:530px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 20px 45px rgba(0,0,0,0.16);
    transition:0.4s;
}

.imagen img:hover{
    transform:translateY(-8px) scale(1.02);
}


/* FOOTER */

footer{
    background:linear-gradient(135deg, #f59e0b, #ea580c);
    padding:35px;
    text-align:center;
}

footer p{
    color:white;
    font-size:16px;
    letter-spacing:1px;
}


/* ANIMACIÓN */

@keyframes aparecer{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* RESPONSIVE */

@media(max-width:1000px){

    .destacada,
    .seccion,
    .reverse{
        flex-direction:column;
        text-align:center;
    }

    .contenido-hero h1{
        font-size:52px;
    }

    .texto-destacada h2,
    .texto h2{
        font-size:42px;
    }

}

@media(max-width:600px){

    .hero{
        height:85vh;
    }

    .contenido-hero h1{
        font-size:40px;
    }

    .contenido-hero p{
        font-size:18px;
    }

    .texto-destacada h2,
    .texto h2{
        font-size:34px;
    }

    .texto p,
    .texto-destacada p{
        font-size:18px;
    }

    .imagen img,
    .imagen-destacada img{
        width:100%;
        height:430px;
    }

    .boton{
        padding:15px 30px;
    }

}
/* PAGOS */

.pagos{
    padding:90px 8%;
    background:#fff4dc;
    text-align:center;
}

.pagos h2{
    font-size:48px;
    color:#d97706;
    margin-bottom:35px;
}

.pagos p{
    font-size:22px;
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

@media(max-width:600px){

    .pagos h2{
        font-size:34px;
    }

    .pagos p{
        font-size:18px;
    }

}