/* --- SEGURANÇA: Reset Básico (Caso o style.css não carregue) --- */
* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Garante a fonte bonita */
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* --- ESTILOS DA PÁGINA DE SERVIÇOS --- */

/* Banner Interno */
.banner-interna {
    background-color: #1a2b42;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.banner-interna h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    margin-top: 0; /* Garante que não tenha espaço branco no topo */
}

.banner-interna p {
    font-size: 1.2rem;
}

/* --- Menu Rápido (Botões que estavam sumidos) --- */
.menu-rapido-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.menu-rapido-container p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: bold;
}

.botoes-navegacao {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo FORTE para os botões */
.botoes-navegacao a {
    display: inline-block; /* Importante para o padding funcionar */
    text-decoration: none;
    color: #1a2b42;
    background-color: #f0f0f0; /* Fundo cinza */
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.botoes-navegacao a:hover {
    background-color: #1a2b42;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Lista de Serviços (Cartões Gigantes) --- */
.lista-servicos {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 20px 0 80px 0;
}

.item-servico {
    display: flex;
    align-items: stretch;
    gap: 50px;
    margin-bottom: 80px;
    background-color: #c2bae7; /* Fundo Lilás */
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    
    /* Correção para rolagem suave (scroll-margin) */
    scroll-margin-top: 150px; 
}

/* Imagem */
.img-servico {
    flex: 0 0 40%;
}

.img-servico img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: block;
}

/* Texto */
.txt-servico {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txt-servico h2 {
    color: #1a2b42;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 0;
}

.txt-servico p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Botão Agendar */
.btn-agendar {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 20px;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-agendar:hover {
    background-color: #219150;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .item-servico {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        border-radius: 30px;
    }

    .img-servico {
        flex: auto;
        width: 100%;
    }

    .img-servico img {
        height: 300px;
        min-height: auto;
    }
    
    .txt-servico h2 {
        font-size: 2rem;
        text-align: center;
    }

    .btn-agendar {
        width: 100%;
        text-align: center;
    }
}