/* Estilos premium para o WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

/* Estilos premium para o botão Saiba Mais flutuante */
.saiba-mais-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #E6C65A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.saiba-mais-float:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.saiba-mais-float span {
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Estilos premium para o rodapé */
.footer {
    background: linear-gradient(to right, #0A3D62, #1B5E8A);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-bg.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #D4AF37;
}

.footer-column p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 20px;
}

.footer-links a:hover:before {
    left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #E6C65A;
    text-decoration: underline;
}

/* Estilos premium para os cards de serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.servico-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.servico-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(230, 198, 90, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.servico-card:hover:before {
    opacity: 1;
}

.servico-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    overflow: hidden;
    position: relative;
}

.servico-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-content {
    padding: 30px;
}

.servico-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.servico-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ver-mais-btn {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #E6C65A 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.ver-mais-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Estilos premium para a seção Por Que Escolher Nossos Serviços */
.porque-escolher {
    background: linear-gradient(to right, #0A3D62, #1B5E8A);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.porque-escolher:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-bg.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.porque-escolher .container {
    position: relative;
    z-index: 2;
}

.porque-escolher .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.diferencial-numero {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.diferencial-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.diferencial-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Estilos premium para a seção de avaliações */
.avaliacoes {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.estrelas {
    font-size: 48px;
    color: #FFD700;
    margin: 20px 0;
    letter-spacing: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ver-avaliacoes {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #E6C65A 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.ver-avaliacoes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Estilos premium para a seção de contato e mapa */
.contato-info {
    padding: 80px 0;
    background-color: #fff;
}

.contato-info .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

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

.horario-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.horario-item:last-child {
    border-bottom: none;
}

.mapa-container {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Responsividade */
@media (max-width: 992px) {
    .contato-info .container {
        grid-template-columns: 1fr;
    }
    
    .mapa-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}
