/* Ícones para serviços */
.icon-due-diligence {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B39B6D"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.icon-contratos {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B39B6D"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>');
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.icon-escritura {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B39B6D"><path d="M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z"/></svg>');
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

/* Botão flutuante de Saiba Mais */
.saiba-mais-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #B39B6D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.saiba-mais-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background-color: #9a8555;
}

.saiba-mais-float span {
    font-size: 24px;
    font-weight: bold;
}

/* Seção de Avaliações */
.avaliacoes {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.avaliacoes .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.avaliacoes .section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.estrelas {
    color: #B39B6D;
    font-size: 36px;
    margin-bottom: 20px;
}

.ver-avaliacoes {
    display: inline-block;
    padding: 15px 30px;
    background-color: #B39B6D;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ver-avaliacoes:hover {
    background-color: #9a8555;
    transform: translateY(-3px);
}

/* Seção Contato e Mapa */
.contato-info {
    padding: 80px 0;
    background-color: #fff;
}

.contato-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-block {
    padding-right: 40px;
}

.info-block h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    font-size: 18px;
    color: #B39B6D;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.horarios {
    margin-top: 30px;
}

.horarios h4 {
    font-size: 18px;
    color: #B39B6D;
    margin-bottom: 15px;
    font-weight: 600;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.mapa-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Rodapé atualizado */
.footer {
    background-color: #1a3c4d;
    color: #fff;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: #B39B6D;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B39B6D;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #B39B6D;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .saiba-mais-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}
