/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --light-color: #f8f8f8;
    --dark-color: #111;
    --text-color: #333;
    --text-light: #777;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('media/bg\ hero\ section.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 40px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px auto;
    opacity: 0.8;
    font-style: italic;
    animation: fadeIn 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Galerias - TODAS VISÍVEIS */
.gallery-section {
    padding: 100px 20px;
    background-color: var(--light-color);
    display: block; /* Todas as galerias visíveis */
}

/* Adicionando uma borda sutil entre as seções */
.gallery-section:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
}

.gallery-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 400px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0 25px;
    opacity: 0.7;
}

.lightbox-nav:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.about-section {
    padding: 100px 20px;
    background-color: var(--dark-color);
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-top: 30px;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hidden{
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
    transform: translateX(-100%);
}

.hidden-blurless{
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transition: all 1s;
    transform: translateX(0%);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 5px;
    }
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .gallery-item {
        height: 380px;
    }
    .gallery-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .gallery-item {
        height: 350px;
    }
    .gallery-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .gallery-item {
        height: 320px;
    }
    .gallery-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .lightbox-nav {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    .lightbox-close {
        font-size: 2.2rem;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 650px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .tagline {
        font-size: 1rem;
        padding: 0 10px;
    }
    .gallery {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
    }
    .gallery-item {
        height: 350px;
    }
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .gallery-item {
        height: 300px;
    }
    .gallery-title {
        font-size: 1.6rem;
    }
}