body {
    background-color: #121212; 
    color: #FFFFFF; 
}

.background-container {
    background-color: #1E1E1E;
    padding: 50px 0;
    text-align: center;
}

h4, h5 {
    color: #0095FF;
    font-weight: bold;
}

.service-image {
    border: 3px solid #0095FF;
    border-radius: 10px;
}

.service-text {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

/* Estilos do Footer */
footer {
    background-color: #8b4513; /* Fundo castanho escuro */
    color: #FFFFFF;
    padding: 40px 0;
}

.footer-logo {
    font-size: 1.5rem;
    color: #D2B48C; 
}
.footer-section h6 {
    color: #D2B48C; /* Castanho claro para títulos */
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #D2B48C; /* Castanho claro ao passar o mouse */
}

.footer-icons i {
    color: #D2B48C; /* Cor dos ícones */
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #D2B48C; /* Castanho claro para o link do rodapé */
}

/* Responsividade Adicional */
@media (max-width: 992px) {
    .two-columns {
        flex-direction: column;
        padding: 10px;
    }
    .image-grid, .video-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .highlight {
        margin: 10px;
        padding: 10px;
    }
}
@media (max-width: 576px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }
    .quote-form {
        padding: 15px;
    }
    .text h2, .text p {
        text-align: center;
    }
}


.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.image-item {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
    transition: background-color 0.3s;
}

.overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}




.instagram-videos {
    text-align: center; /* Centraliza o conteúdo */
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px; /* Limita a largura para telas grandes */
    box-sizing: border-box;
}

.instagram-videos h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #ffffff;
}

.video-grid {
    display: flex;
    gap: 15px; /* Espaçamento entre os vídeos */
    justify-content: center; /* Centraliza os itens horizontalmente */
    flex-wrap: nowrap; /* Mantém todos os itens em uma única linha */
    overflow-x: auto; /* Permite rolagem horizontal caso não caibam na tela */
}

.video-card {
    flex: 0 0 auto; /* Mantém a largura fixa */
    width: calc(16.666% - 15px); /* Divide igualmente por 6 vídeos */
    max-width: 16.666%;
    border-radius: 10px;
    overflow: hidden;
}

.video-card img {
    width: 100%; /* Ajusta a imagem ao card */
    height: auto; /* Mantém a proporção */
    border-radius: 10px;
}

/* Ajuste para dispositivos menores */
@media (max-width: 768px) {
    .video-grid {
        flex-wrap: wrap; /* Permite quebrar linha em telas menores */
    }
    .video-card {
        flex: 1 1 calc(50% - 20px); /* Dois vídeos por linha */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .video-card {
        flex: 1 1 100%; /* Um vídeo por linha */
        max-width: 100%;
    }
}
.instagram-videos h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #8B4513; /* Castanho (SaddleBrown) */
}
