* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background-color: #0a0a0a;
    border-bottom: 2px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #ff0000;
}

.titulo {
    text-align: center;
    padding: 60px 20px 10px;
}

.titulo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    letter-spacing: 2px;
}

.linea {
    width: 610px;
    height: 2px;
    background-color: #ff0000;
    margin: 10px auto 18px;
}

.titulo p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #d0d0d0;
    padding: 0 10px;
}

.galeria-grid {
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 450px; 
    gap: 15px;
}

.galeria-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; 
}

.boton-ver {
    text-align: center;
    margin: 20px 0 60px;
}

.ver-mas {
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.6px;
}

.footer {
    background-color: #000;
    padding: 30px 60px 40px;
    border-top: 2px solid #ff0000;
    margin-top: 40px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.copy {
    color: #ff0000;
    font-size: 0.88rem;
}

@media (max-width: 1000px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 400px;
        gap: 15px;
        padding: 20px 30px;
    }
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr; 
        grid-auto-rows: 300px;
        padding: 10px 20px;
    }
}