* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --brown-dark: #4A3933;
  --brown-medium: #6B5347;
  --brown-light: #8B7355;
  --gold: #C9A961;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--black) 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--brown-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;

}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23C9A961" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero h2 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero p {
  color: var(--gray-light);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

/* Section Base */
section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title .divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

/* About Section */
#sobre {
  background: var(--gray-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--brown-dark);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--black);
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

/* Areas Section */
#areas {
  background: var(--white);
}

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

.area-card {
  background: var(--gray-light);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border-top: 3px solid var(--gold);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: var(--white);
}

.area-card i {
  font-size: 3rem;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
}

.area-card h3 {
  color: var(--brown-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.area-card p {
  color: var(--black);
  font-size: 0.95rem;
}

/* Team Section */
#equipe {
  background: var(--gray-light);
}

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

.team-member {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-photo {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: 50% 25%;    
}


.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h3 {
  color: var(--brown-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-info .role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-info .oab {
  color: var(--brown-medium);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-info .email {
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-info .email:hover {
  color: var(--gold);
}

/* Contact Section */
#contato {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 2rem;
  color: var(--gold);
  min-width: 40px;
}

.contact-item h3 {
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--black);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold);
}

.map-container {
  background: var(--gray-light);
  border-radius: 10px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--brown-light);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

footer p {
  margin-bottom: 0.5rem;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

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

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

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

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
