* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2f3e18;
  background: linear-gradient(135deg, #fbf9f6 0%, #f2efe9 100%);
}

header {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(47, 62, 24, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.2);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: #2f3e18;
}

.logo-text p {
  font-size: 0.75rem;
  color: #6b7c3a;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #4a5d23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6b7c3a;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #4a5d23;
  transition: 0.3s;
}

.hero {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #4a5d23;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #6b7c3a;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff; /* fundo neutro real */
  display: block; /* não precisa flex */
  box-shadow: 0 12px 32px rgba(74, 93, 35, 0.18);
  border: 1px solid rgba(74, 93, 35, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* valoriza o rosto na versão mobile */
  display: block;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4a5d23 0%, #6b7c3a 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 93, 35, 0.4);
}

.hero-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8dfd5 0%, #ded5ca 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services {
  background: white;
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  color: #4a5d23;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #f5f0ea 0%, #ede8e0 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 93, 35, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #4a5d23;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7c3a;
}

.about {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #4a5d23;
  margin-bottom: 2rem;
}

.about p {
  color: #6b7c3a;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.credentials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.credential {
  background: linear-gradient(135deg, #e8dfd5 0%, #ded5ca 100%);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: #4a5d23;
  font-weight: 600;
}

.contact {
  background: linear-gradient(135deg, #e8dfd5 0%, #ded5ca 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: #4a5d23;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 93, 35, 0.2);
}

.contact-item span {
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item svg {
  width: 40px;
  height: 40px;
}

.tips {
  background: white;
  padding: 4rem 2rem;
}

.tips-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tips h2 {
  text-align: center;
  font-size: 2rem;
  color: #4a5d23;
  margin-bottom: 0.5rem;
}

.tips-subtitle {
  text-align: center;
  color: #6b7c3a;
  margin-bottom: 3rem;
  font-style: italic;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.tip-card {
  background: linear-gradient(135deg, #f5f0ea 0%, #ede8e0 100%);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 93, 35, 0.2);
}

.tip-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
}

.tip-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.tip-card-header h3 {
  color: #4a5d23;
  font-size: 1.3rem;
  flex-grow: 1;
}

.toggle-icon {
  font-size: 2rem;
  color: #6b7c3a;
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.tip-card.active .toggle-icon {
  transform: rotate(45deg);
}

.tip-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.tip-card.active .tip-card-content {
  max-height: 1000px;
  padding: 0 2rem 2rem 2rem;
}

.tip-card-content p {
  color: #6b7c3a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tip-card-content strong {
  color: #4a5d23;
  display: block;
  margin-top: 1rem;
}

.tip-card-content ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.tip-card-content ul li {
  color: #6b7c3a;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tip-card-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6b7c3a;
  font-weight: bold;
}

.tip-note {
  background: linear-gradient(135deg, #e8dfd5 0%, #ded5ca 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
}

.tip-note p {
  color: #4a5d23;
  font-size: 1.05rem;
  margin: 0;
}

footer {
  background: #4a5d23;
  color: white;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e8dfd5 0%, #ded5ca 100%);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-image {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff; /* fundo neutro real */
    display: block; /* não precisa flex */
    box-shadow: 0 12px 32px rgba(74, 93, 35, 0.18);
    border: 1px solid rgba(74, 93, 35, 0.1);
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* valoriza o rosto na versão mobile */
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .credentials {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    flex-direction: column;
  }
}
