/* Geral */
body {
    font-family: 'Open Sans', sans-serif; /* Você pode substituir por Montserrat ou Roboto */
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Você pode substituir por Roboto ou Open Sans */
    font-weight: 700;

}

/* Conteúdo */
p, .content {
    font-family: 'Open Sans', sans-serif; /* Você pode substituir por Montserrat ou Roboto */
    font-weight: 400;

}

 /* CSS para o Cabeçalho e Navbar */
 .navbar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

thead tr {
  background-color: #D0AB01; /* Cor Cabeçalho */
  color: #ffffff;
  text-align: left;
}

th, td {
  padding: 12px 15px;
}

tbody tr {
  border-bottom: 1px solid #dddddd;
}

tbody tr:nth-of-type(even) {
  background-color: #D4D4D5; /* Cor Fileiras */
}

tbody tr:last-of-type {
  border-bottom: 2px solid #AFAFAE; /* Cor Borda Inferior */
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}

.btn-primary, .btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}
/* CSS para a Seção Hero */
.hero {
    height: 100vh; /* Ajuste para ocupar 100% da altura da tela */
    position: relative;
}

.carousel-item {
    height: 100vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn-lg {
    border-radius: 50px;
}




        
 /* CSS para a seção "O que Oferecemos" */
.offer-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.offer-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.offer-section .section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.offer-section .card {
    border: 1px solid #000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.offer-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.offer-section .card-body {
    padding: 20px;
}

.offer-section .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px; /* Adicionado para dar espaço ao traço */
    text-align: center; /* Centraliza o texto */
}

.offer-section .card-title::before {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0; /* Ajustado para alinhar com a margem inferior do título */
    left: 50%;
    transform: translateX(-50%);
}

.offer-section .card-text {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
}

.offer-section .btn-outline-primary {
    border-color: #000;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.offer-section .btn-outline-primary:hover {
    background-color: #000;
    color: #fff;
}

/* CSS para a seção "Depoimentos" */
.testimonials-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.testimonials-section .section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}
/* CSS para a seção "Nossos Clientes" */
.clients-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.clients-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.clients-section .section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.client-logo {
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.client-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.client-logo img {
    border-radius: 10px;
    max-width: 100%;
}
/* CSS para a seção "Últimos Artigos" */
.articles-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.articles-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.articles-section .section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.articles-section .card {
    border: 1px solid #000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.articles-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.articles-section .card-body {
    padding: 20px;
}

.articles-section .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    position: relative;
}

.articles-section .card-title::before {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.articles-section .card-text {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
}

.articles-section .btn-outline-primary {
    border-color: #000;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.articles-section .btn-outline-primary:hover {
    background-color: #000;
    color: #fff;
}

.articles-section .btn-primary {
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.articles-section .btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* CSS para o rodapé */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: #bbb;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer .input-group .form-control {
    border-radius: 0;
}

.footer .input-group .btn-primary {
    border-radius: 0;
    background-color: #007bff;
    border-color: #007bff;
}

.footer .input-group .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}


.single-post .post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.single-post .post-thumbnail img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.single-post .post-content {
    font-size: 1.125rem;
    color: #555;
}

.single-post .post-content p {
    margin-bottom: 1.5rem;
}

.single-post .post-meta {
    font-size: 0.875rem;
    color: #777;
}

.single-post .post-category {
    display: inline-block;
    margin-right: 0.5rem;
}

.single-post .post-navigation {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.single-post .post-navigation .row {
    display: flex;
    justify-content: space-between;
}

.single-post .post-navigation a {
    color: #007bff;
    text-decoration: none;
}

.single-post .post-navigation a:hover {
    text-decoration: underline;
}
/* Categoria */
.category-page {

    padding: 2rem;

}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.category-img-link {
    display: block;
    border-bottom: 4px solid #007bff;
}

.category-card-body {
    text-align: center;
}

.category-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #007bff;
}

.category-card-title a {
    text-decoration: none;
    color: inherit;
}

.category-card-title a:hover {
    text-decoration: underline;
}

.category-card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.category-btn {
    background-color: #007bff;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.2s, transform 0.2s;
}

.category-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
.contact-info h4 {
    margin-top: 20px;
    font-size: 1.5rem;
}

.contact-info ul {
    padding: 0;
    list-style: none;
}

.contact-info ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}