
/* =========================
   GALERIA VIRTUAL
========================= */

.galeria-topo {
    text-align: center;
    margin-bottom: 50px;
}

.galeria-topo h1 {
    color: #990011;
    font-size: 50px;
    margin-bottom: 20px;
}

.galeria-topo p {
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

/* BOTÕES */

.galeria-botoes {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.galeria-btn {
    background-color: #990011;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.galeria-btn:hover {
    background-color: #77000d;
}


/* PREVIEW */

.preview-section {
    margin-bottom: 90px;
}

.preview-section h2 {
    text-align: center;
    color: #990011;
    margin-bottom: 30px;
    font-size: 38px;
}

.preview-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.preview-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}