/* =====================
   RESET
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --secondary: #f59e0b;

  --dark: #0f172a;
  --dark-light: #1e293b;

  --white: #ffffff;
  --gray: #64748b;
  --light: #f8fafc;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  --radius: 20px;
  --transition: 0.4s ease;
}

body {
  font-family: "Poppins", sans-serif;

  background: #f8fafc;
  color: var(--dark);

  overflow-x: hidden;
}

/* =====================
   NAVBAR
===================== */

.nav {
  position: fixed;
  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  width: 90%;
  max-width: 1300px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 2rem;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 20px;

  z-index: 999;

  box-shadow: var(--shadow);
}

.navbar a {
  text-decoration: none;

  font-size: 1.4rem;
  font-weight: 700;

  color: var(--primary);
}

.menu-navbar {
  display: flex;
  gap: 2rem;
}

.menu-navbar a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.menu-navbar a:hover {
  color: var(--primary);
}

.navbar-extra {
  display: none;
}

/* =====================
   HERO
===================== */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 4rem;

  padding: 120px 8% 80px;

  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

.hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: rgba(22, 163, 74, 0.08);

  top: -250px;
  right: -250px;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.badge {
  display: inline-block;

  background: rgba(22, 163, 74, 0.1);

  color: var(--primary);

  padding: 10px 18px;

  border-radius: 50px;

  font-weight: 600;

  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);

  line-height: 1.1;

  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  max-width: 600px;

  font-size: 1.1rem;

  color: var(--gray);

  margin-bottom: 2rem;

  line-height: 1.8;
}

.hero-btn {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  width: 550px;

  animation: floating 5s infinite ease-in-out;
}

@keyframes floating {
  50% {
    transform: translateY(-20px);
  }
}

/* =====================
   SECTION
===================== */

section {
  padding: 100px 8%;
}

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

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

/* =====================
   PROFILE
===================== */

.profile {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.profile-img img {
  width: 100%;
  max-width: 500px;

  border-radius: var(--radius);
}

.profile-content h2 {
  margin-bottom: 1rem;
}

.profile-content p {
  line-height: 1.9;
  color: var(--gray);
}

.profile-content ul {
  margin-top: 2rem;
}

.profile-content li {
  list-style: none;
  margin-bottom: 12px;
}

/* =====================
   FEATURES
===================== */

.feature-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.feature-card {
  background: white;

  padding: 35px;

  border-radius: var(--radius);

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 70px;
  margin-bottom: 1rem;
}

/* =====================
   GALLERY
===================== */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  border-radius: var(--radius);

  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* =====================
   TESTIMONIAL
===================== */

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 25px;
}

.testimonial-card {
  background: white;

  padding: 30px;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.testimonial-card p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  color: var(--primary);
}

/* =====================
   FAQ
===================== */

.faq-item {
  background: white;

  padding: 20px;

  border-radius: 15px;

  margin-bottom: 20px;

  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;

  border: none;

  background: none;

  text-align: left;

  cursor: pointer;

  font-size: 1rem;

  font-weight: 600;
}

.faq-answer {
  margin-top: 15px;
  color: var(--gray);
}

/* =====================
   CONTACT
===================== */

.contact {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 30px;
}

.contact-info {
  background: white;

  padding: 35px;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.contact-info p {
  margin-top: 15px;
}

.map iframe {
  width: 100%;
  height: 100%;

  min-height: 400px;

  border: none;

  border-radius: var(--radius);
}

/* =====================
   FOOTER
===================== */

footer {
  background: var(--dark);

  color: white;

  padding: 80px 8% 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;
}

.footer-grid a {
  display: block;

  color: #cbd5e1;

  text-decoration: none;

  margin-top: 10px;
}

.footer-grid a:hover {
  color: white;
}

.copyright {
  text-align: center;

  margin-top: 40px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 20px;

  color: #94a3b8;
}

/* =====================
   WHATSAPP
===================== */

.wa-float {
  position: fixed;

  right: 20px;
  bottom: 20px;

  width: 65px;
  height: 65px;

  z-index: 999;
}

.wa-float img {
  width: 100%;

  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));

  transition: 0.3s;
}

.wa-float:hover img {
  transform: scale(1.1);
}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {
  .hero,
  .profile {
    flex-direction: column;
    text-align: center;
  }

  .hero-btn {
    justify-content: center;
    flex-wrap: wrap;
  }

  .menu-navbar {
    display: none;
  }

  .navbar-extra {
    display: block;
  }

  section {
    padding: 80px 5%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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