body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    border: none;
}

#root {
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #c77408; /* Dourado da logo */
}

a {
    color: #d4a020; /* Dourado da logo */
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.photo-frame {
    border: 2px solid #c77408;
    border-radius: 50%; /* Para molduras ovais */
    overflow: hidden;
    display: inline-block;
}

.photo-frame.rectangular {
    border-radius: 10px; /* Para molduras retangulares */
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.2s;
}

.gallery-item {
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gallery-image {
        border-radius: 8px;
    }
    h2 {
        font-size: 1.5rem;
    }
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-event {
    margin: 20px 0;
    padding: 10px;
    border-left: 2px solid gold;
}

.testimonial-card {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid gold;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
}

.button {
    background-color: #c77408; /* Dourado da logo */
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #d4a020; /* Um tom mais escuro para o hover */
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
}