
/* Estilo general */
body {
    background: radial-gradient(circle at top left, #1a1a2e, #162447);
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 50, 0.7);
    border-bottom: 2px solid #e94560;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #e94560;
}

header p {
    font-size: 1.2rem;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #e94560;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    display: block;
}

.card h2 {
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #f0f0f0;
}

.card p {
    text-align: center;
    padding: 0 1rem 1rem;
    color: #cfcfcf;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #e94560;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 50, 0.8);
    border-top: 2px solid #e94560;
}

a.neon-link {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid #e94560;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

a.neon-link:hover {
    background: #e94560;
    box-shadow: 0 0 15px #e94560, 0 0 30px #e94560;
    transform: scale(1.05);
}








