* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

.header-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    border-bottom: 2px solid #B22222;
}

nav {
    max-width: 1000px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a.active {
    color: #B22222;
    border-bottom: 2px solid #B22222;
}

.nav-links li a:hover {
    color: #B22222;
}

body {
    background-image: url(img/1900x1900-000000-81-0-0.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

main {
    flex: 1;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 20px;
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 15px;
    padding-top: 20px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery__item--3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}
.gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}
.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}
.gallery__item--6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}

.album-section{
    max-width: 1100px;
    margin: auto;
}

.album-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.album-card {
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    border-radius: 10px;
}

.album-card h3 {
    margin: 10px 0 0;
}

.album-card p {
    color: #666;
}

.album-card button {
    background: #1db954;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.album-card button:hover {
    background: #159a44;
}

.hero-section {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 80%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.info-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1000px;
    background-color: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 10px;
    line-height: 1.7;
}

iframe {
    display: block;
    margin: 30px auto;
    border: 5px solid #B22222;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 15px 0;
    margin-top: 30px;
    border-bottom: 2px solid #B22222;
    font-size: 2rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 15px 0;
    margin-top: 25px;
    color: #f0f0f0;
    font-size: 1.4rem;
}

p {
    padding: 10px 0;
    margin-bottom: 10px;
}

ul {
    margin-left: 30px;
    padding: 10px 0;
}
ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.info-container img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

footer {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    color: #aaa;
    padding: 20px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid #333;
}

