body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #87ceea;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #050505;
    color: #deea87;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    cursor: pointer;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu :hover {
    color: #bbe2f1;
}

.menu li a {
    color: #deea87;
    text-decoration: none;
}

main {
    flex: 1;
    margin: 0 auto 40px; 
    max-width: 1200px;  
    width: 100%;
}


.des {
    background-color: #267594;
    border-radius: 70px;
    margin: 60px 0 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.des h1 {
    color: #f1f8fb;
    text-align: center;
    margin: 0;
}


.contenedor {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}


.fotito {
    flex: 0 0 40%; 
    max-width: 450px;
}

.fotito video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}


.texto-lateral {
    flex: 1 1 55%;
    min-width: 300px; /
}


.fotitos {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 18px;
    overflow-x: auto; 
}

.fotitos img {
    height: auto;
    max-height: 260px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

h4 {
    color: #267594;
}

footer {
    background-color: #0e0e0f;
    color: #deea87;
    text-align: center;
    padding: 10px;
}
