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 200px;
}

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

.des h1 {
    color: #f1f8fb;
    text-align: center;
    margin: 16px auto;
}


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


.fotito {
    flex: 0 0 380px;
}

.fotito img,
.fotito video {
    width: 100%;
    max-width: 380px; 
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}


.texto-lateral {
    flex: 1;
}


.cartas {
    display: flex;
    flex-wrap: wrap; 
    gap: 12px;
    margin-top: 18px;
    justify-content: flex-start;
}

.cartas img {
    width: auto;
    max-width: 100%; 
    height: 180px; 
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}


.moradito img {
    width: auto;
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    margin-bottom: 10px;
}


h4 {
    color: #267594;
}


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

footer a {
    color: #deea87;
}
