* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a2e;
    font-family: 'Segoe UI', sans-serif;
    color: #e0e0e0;
}

header {
    background-color: #16213e;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #e94560;
    color: #D552A3;
}

/* ===== NAV ===== */
nav {
    background-color: #0f3460;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    display: block;
    padding: 14px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}


.bienvenida {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.bienvenida h2 {
    font-size: 22px;
    color: #e94560;
    margin-bottom: 0.6rem;
}

.bienvenida p {
    font-size: 15px;
    color: #a0a0b0;
    line-height: 1.6;
}


section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1.25rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #e94560;
    display: inline-block;
}


.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.galeria-item {
    background: #16213e;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #0f3460;
    transition: transform 0.2s, border-color 0.2s;
}

.galeria-item:hover {
    transform: translateY(-4px);
    border-color: #e94560;
}

.galeria-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.galeria-caption {
    padding: 10px 12px;
    font-size: 13px;
    color: #a0a0b0;
    line-height: 1.4;
}


footer {
    background-color: #16213e;
    color: #a0a0b0;
    text-align: center;
    padding: 14px;
    font-size: 13px;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: 2px solid #0f3460;
}
