@charset "utf-8";
/* CSS Document */
/* Estilos gerais */
/* Paleta de Cores */
:root {
    --primary-color: #1D5EF0;  /* Azul */
    --secondary-color: #F0B11C; /* Amarelo */
    --light-color: #f8f9fa;    /* Cor de fundo clara */
    --dark-color: #343a40;     /* Texto mais escuro */
    --muted-color: #6c757d;    /* Cor neutra */
}
body {
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    border-bottom: 2px solid #ddd;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F0B11C;
}
.navbar-nav .nav-link {
    color: #333;
    padding-left: 15px;
    padding-right: 15px;
}
.navbar-nav .nav-link.active {
    color: #F0B11C;
    font-weight: bold;
}

/* Área de Busca */
.search-area {
    background-color: #f8f9fa;
}
.search-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}
.search-input {
    width: 50%;
    max-width: 500px;
}
.search-btn {
    font-size: 1rem;
    padding: 10px 20px;
}
.btn_padrao {
    background-color: #007bff;
    color: white;
    border: none;
    transition: all 0.3s ease;
}
.btn_padrao:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}
.destaque{color:#F0B11C; text-transform:uppercase;}
.card-servico{color:#F0B11C; text-align:center; text-transform:uppercase;}
.card-descricao{text-align:center; color:#333;}
.btn_cadastro{width:100%;}
/* Destaques */
.highlights {
    background-color: #f1f1f1;
}
.highlights-title {
    font-size: 2rem;
    font-weight: bold;
}
.highlight-card {
    border: none;
    transition: transform 0.3s;
}
.highlight-card:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    margin-top: 50px;
}
.footer a{text-decoration:none;}
.footer-text {
    margin: 0;
    font-size: 0.9rem;
}
.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}
.footer .list-unstyled li {
    margin-bottom: 10px;
}
.footer .social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Estilos do Header */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.nav-link {
    font-weight: 500;
}
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 8px 0;
}
.dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}
.dropdown-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Estilos da Página de Categoria */
.filtros {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.servico {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: white;
}
.servico:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.servico img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
.servico h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.categoria-badge {
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}
.btn-filtro {
    width: 100%;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .servico {
        margin-bottom: 15px;
    }
    .filtros {
        margin-bottom: 30px;
    }
    .servico img {
        height: 150px;
    }
}


