/* RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* UTILITÁRIOS */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

/* CABEÇALHO */
header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.logo img {
    height: 50px;
    display: block;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #1e293b;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

nav a:hover {
    color: #294719;
}

/* Dropdown */
.dropdown-wrapper {
    position: relative;
}

.dropdown-button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    font-family: 'Segoe UI',
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    cursor: pointer;
    text-align: left;
}

.dropdown-button:hover {
    color: #294719;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 10;
}

.dropdown-wrapper:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: #1e293b;
    padding: 0.5rem 0;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: #294719;
}

/* BOTÕES */
.btn-contato {
    background-color: #205006;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-contato:hover {
    background-color: #2f4921;
}

.btn-contato.secondary {
    background-color: #283f1c;
}

/* HERO */
.hero {
    background-color: #325f1a;
    padding: 5rem 1rem 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.hero .buttons a {
    margin: 0 0.5rem;
}

/* SEÇÕES */
section {
    background-color: #f8fafc;
    color: #1e293b;
    padding: 3rem 1rem;
}

section h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background-color: white;
}

a.saiba-mais {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
}

a.saiba-mais:hover {
    text-decoration: underline;
}

/* DESTAQUE */
.highlight {
    background-color: #eef2f6;
}

/* RODAPÉ */
footer {
    background-color: #325f1a;
    color: #ffffff;
    padding: 3rem 1rem;
}

footer h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

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

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-copy {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ANÚNCIO */
.ad-box {
    background-color: #e2e8f0;
    padding: 2rem;
    text-align: center;
    color: #1e293b;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .solucoes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

/* === Estilo das Soluções === */
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.solucao-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.solucao-card:hover {
  transform: translateY(-5px);
}

.solucao-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.solucao-card-content {
  padding: 1.5rem;
}

.solucao-card h3 {
  margin-top: 0;
  color: #1a1a1a;
}

.solucao-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

}