body {
 font-family: sans-serif;
 margin: 0;
 padding: 0;
 background-color: #f4f4f4;
 color: #333;
}
.logo img {
  width: 240px;
  height: auto; /* Mantém a proporção da imagem automaticamente */
  display: block; /* Ajuda a evitar espaços extras indesejados abaixo da imagem */
}
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* Adiciona rolagem suave ao clicar nos links do menu */
html {
    scroll-behavior: smooth;
}

/* Remove o footer fixo para não sobrepor o conteúdo */
footer {
    position: relative; 
    margin-top: 40px; /* Adiciona um espaço acima do rodapé */
}

/* Estilos gerais para as novas seções */
.page-section {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #222;
}

.page-section p {
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.section-gray {
    background-color: #f9f9f9;
}


/* Estilos para o grid de serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-top: 0;
    color: #ff8c00; /* Laranja do logo */
}

/* Estilos para a seção de contato */
#contato .cta-buttons {
    margin-top: 20px;
}

header {
 background-color: #fff;
 padding: 20px 0;
 border-bottom: 1px solid #eee;
}

header .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.logo {
 font-size: 1.5em;
 font-weight: bold;
}

.logo-orange {
 color: #ff8c00; /* Laranja */
}

nav ul {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
}

nav ul li {
 margin-left: 20px;
}

nav ul li a {
 text-decoration: none;
 color: #333;
 transition: color 0.3s ease;
}

nav ul li a:hover {
 color: #ff8c00;
}

.hero {
 background-color: #fff;
 padding: 100px 0;
 text-align: center;
}

.hero .container {
 max-width: 800px;
}

.hero h1 {
 font-size: 2.5em;
 margin-bottom: 10px;
 color: #222;
}

.hero .subtitle {
 font-size: 1.2em;
 color: #666;
 margin-bottom: 30px;
}

.cta-buttons {
 display: flex;
 justify-content: center;
 gap: 20px;
}

.button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 15px 30px;
 border-radius: 5px;
 text-decoration: none;
 font-weight: bold;
 transition: background-color 0.3s ease, color 0.3s ease;
}

.button img {
 margin-right: 10px;
 height: 20px;
}

.button.primary {
 background-color: #ff8c00; /* Laranja */
 color: #fff;
 border: none;
}

.button.primary:hover {
 background-color: #e67e00;
}

.button.secondary {
 background-color: #fff;
 color: #333;
 border: 1px solid #ccc;
}

.button.secondary:hover {
 background-color: #f0f0f0;
}

footer {
 background-color: #333;
 color: #fff;
 text-align: center;
 padding: 20px 0;
 font-size: 0.9em;
 position: fixed; /* Opcional: para manter o footer fixo na parte inferior */
 bottom: 0; /* Opcional */
 width: 100%; /* Opcional */
}

footer .container {
 padding: 0 20px;
}

/* Adaptações para dispositivos menores */
@media (max-width: 768px) {
 .container {
  padding: 0 15px;
 }

 header .container {
  flex-direction: column;
  align-items: flex-start;
 }

 .logo {
  margin-bottom: 10px;
 }

 nav ul {
  margin-top: 10px;
 }

 nav ul li {
  margin-left: 10px;
 }

 .hero {
  padding: 80px 0;
 }

 .hero h1 {
  font-size: 2em;
 }

 .hero .subtitle {
  font-size: 1em;
 }

 .cta-buttons {
  flex-direction: column;
  align-items: center;
 }

 .cta-buttons .button {
  width: 80%;
  margin-bottom: 10px;
 }
}