
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, sans-serif;
}

body{
    background-color: #daedf2;
    color:#2a254d;
}



header{
    background:#3d3578;
    color:white;
    text-align:center;
    padding:30px;
}

header h1{
    font-size:40px;
    margin-bottom:10px;
}


nav{
   
    background:#67bed9;
    position: sticky;
    top:0;
    box-shadow:0 3px 8px rgba(0,0,0,.3);
    
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
}

nav ul li{
    position:relative;
}

nav ul li a{
    display:block;
    color:white;
    text-decoration:none;
    padding:18px 25px;
    transition:0.4s;
}

nav ul li a:hover{
    background:#67bed9;
    color:white;
    transform:scale(1.1);
}


nav ul li a::after{
    content:"";
    display:block;
    width:0%;
    height:3px;
    background:#aecbe3;
    transition:.4s;
    margin:auto;
}

nav ul li a:hover::after{
    width:100%;
}

header p{
    font-size:18px;
}



nav{
    background:
#67bed9;
    position:sticky;
    top:0;
    z-index:100;
}

nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
}

nav ul li{
    margin:0 15px;
}

nav ul li a{
    display:block;
    padding:18px;
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav ul li a:hover{
    background:#97ebe4;
    border-radius:8px;
}



.hero{
    background:url("https://file.garden/akMmzeszdincCCeN/zoe%20imagen") center/cover;
    height:530px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-shadow:2px 2px 6px black;
    text-align:center;

}

.hero h2{
    font-size:50px;
}

.hero p{
    font-size:22px;
}


h2{
    text-align:center;
    margin:40px 0 20px;
    color:#6f4e37;
}

.card{
    width:300px;
    margin:20px auto;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    padding:15px;
}

.card p{
    text-align:center;
    padding:0 15px 20px;
}



video{
    display:block;
    width:80%;
    max-width:700px;
    margin:30px auto;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}


.contacto{
    width:80%;
    max-width:700px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.contacto p{
    font-size:18px;
    margin:15px 0;
    
}

button{
    background:#52c2cc;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
    margin-top:15px;
    transition:.3s;
        align-items: center;
}

button:hover{
    background:#a67c52;
        align-items: center;
}


footer{
    background:#3d2b1f;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
}



a{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

button{
    display: block;
    margin: 15px auto;
}