* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;

    background: #F5F7FB;

    color: #1E293B;
}

.hero {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #4F46E5,
            #06B6D4
        );

    color: white;

    text-align: center;

    padding: 40px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {

    font-size: 4rem;

    margin-bottom: 20px;
}

.hero p {

    font-size: 1.3rem;

    margin-bottom: 30px;
}

button {

    background: white;

    color: #4F46E5;

    border: none;

    padding: 15px 30px;

    border-radius: 12px;

    cursor: pointer;

    font-size: 1rem;

    font-weight: 600;

    transition: 0.3s;
}

button:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


/* IMAGEN DEL BÚHO*/ 
.owl-container{ width:100%; display:flex; justify-content:center; align-items:center; margin-top:40px; } .owl-image{ width:650px; max-width:95%; height:auto; opacity:0.95; animation: floatOwl 4s ease-in-out infinite; } 
/* Animación suave */
 @keyframes floatOwl { 0%{ transform:translateY(0px); } 50%{ transform:translateY(-10px); } 100%{ transform:translateY(0px); } } 
 /* Responsive */ 
 @media(max-width:768px){ .owl-image{ width:280px; } }