/* Layout da grade de quartos */
.grid-quartos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo automático */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Card do Quarto */
.card-quarto {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.card-quarto:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-quarto img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Mantém a proporção da imagem sem distorcer */
}

.card-quarto h3, .card-quarto p {
    padding: 0 20px;
}

/* Botões */
.btn-ver, .btn-zap {
    margin: 10px 20px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn-ver {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #ccc;
}

.btn-zap {
    background: #25D366; /* Cor oficial do WhatsApp */
    color: white;
}

.btn-zap:hover {
    background: #128C7E;
}

/* Ajuste do Header de Idiomas */
.idiomas {
    text-align: right;
    padding: 20px;
    background: #f9f9f9;
}

.business-section {
    background: #2c3e50; /* Cor sóbria/profissional */
    color: #ecf0f1;
    padding: 60px 20px;
    margin-top: 40px;
}

.business-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.business-content { flex: 1; min-width: 300px; }

.business-content h2 { margin-bottom: 20px; color: #fff; }

.features { list-style: none; margin: 20px 0; }
.features li { margin-bottom: 10px; font-size: 1.1rem; }

.business-image { flex: 1; min-width: 300px; }
.business-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.business-action { margin-top: 30px; display: flex; align-items: center; gap: 20px; }

.price { font-size: 1.5rem; font-weight: bold; color: #2ecc71; }

.btn-zap-business {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-zap-business:hover { background: #128C7E; }

/* Ajuste responsivo */
@media (max-width: 768px) {
    .business-container { text-align: center; justify-content: center; }
    .business-action { flex-direction: column; }
}

/*DIA DA NOIVA*/

.bridal-section {
    background: #fdf6f6;
    color: #5d4037;
    padding: 60px 20px;
}

.bridal-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Aqui, por padrão, o flex coloca o primeiro item (imagem) na esquerda */
}

.bridal-image { flex: 1; min-width: 300px; }
.bridal-image img {
    width: 100%;
    border-radius: 8px; /* Mantive reto para combinar com o Business Center */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bridal-content { flex: 1; min-width: 300px; }
.bridal-content h2 { color: #d81b60; margin-bottom: 20px; }

.btn-zap-bridal {
    display: inline-block;
    background: #d81b60;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Ajuste mobile: mantém a ordem natural de leitura */
@media (max-width: 768px) {
    .bridal-container { flex-direction: column; text-align: center; }
}

/*DEPOIMENTOS*/
.depoimentos-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.depoimentos-section h2 { margin-bottom: 40px; color: #333; }

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.card-depoimento {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-bottom: 4px solid #a47750; /* Mesma cor de destaque do seu menu */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-depoimento .texto {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.card-depoimento .autor strong {
    display: block;
    color: #333;
}

.card-depoimento .autor span {
    font-size: 0.9rem;
    color: #888;
}