/* Estilos para imagens de serviços */
.service-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(179, 155, 109, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(179, 155, 109, 0.3);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    position: relative;
}

.service-card-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #b99d04, #e7b171);
    border-radius: 3px;
}

.service-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-top: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b99d04;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(185, 157, 4, 0.3);
}

.service-card-button:hover {
    background-color: #000920;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 9, 32, 0.4);
}

/* Estilos para o rodapé premium */
.footer {
    background-color: #000920;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #b99d04, #e7b171, #b99d04);
}

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

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #b99d04;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

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

.footer-links a:hover {
    color: #b99d04;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

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

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

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

.saiba-mais-float span {
    font-size: 30px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.saiba-mais-float:hover {
    background-color: #000920;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 9, 32, 0.5);
}

/* Estilos para a seção "Por Que Escolher Nossos Serviços" */
.why-choose-section {
    background-color: #000920;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.why-choose-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.why-choose-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #b99d04, #e7b171);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(179, 155, 109, 0.3);
}

.why-choose-item-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(179, 155, 109, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.why-choose-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b99d04;
}

.why-choose-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Estilos para a seção de avaliações */
.reviews-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.reviews-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.reviews-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #b99d04, #e7b171);
}

.reviews-stars {
    font-size: 40px;
    color: #b99d04;
    margin-bottom: 30px;
}

.reviews-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #b99d04;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(185, 157, 4, 0.3);
}

.reviews-button:hover {
    background-color: #000920;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 9, 32, 0.4);
}

/* Estilos para a seção de contato e mapa */
.contact-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #b99d04, #e7b171);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 5px;
}

.contact-detail a {
    color: #b99d04;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #000920;
}

.contact-hours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.contact-day {
    font-weight: 600;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        margin-top: 50px;
    }
}

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

@media (max-width: 768px) {
    .service-card-image {
        height: 180px;
    }
    
    .why-choose-item {
        padding: 30px;
    }
    
    .why-choose-item-number {
        font-size: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animações e efeitos adicionais */
.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(179, 155, 109, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.service-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-right: 3px solid #B39B6D;
    border-bottom: 3px solid #B39B6D;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover:after {
    opacity: 1;
    width: 50px;
    height: 50px;
}

.why-choose-item:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 3px solid #B39B6D;
    border-left: 3px solid #B39B6D;
    opacity: 0;
    transition: all 0.4s ease;
}

.why-choose-item:hover:before {
    opacity: 1;
    top: 10px;
    left: 10px;
}

.why-choose-item:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #B39B6D;
    border-right: 3px solid #B39B6D;
    opacity: 0;
    transition: all 0.4s ease;
}

.why-choose-item:hover:after {
    opacity: 1;
    bottom: 10px;
    right: 10px;
}

/* Efeito de brilho nos botões */
.service-card-button:before,
.reviews-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.service-card-button:hover:before,
.reviews-button:hover:before {
    left: 100%;
}
