/* ======== RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.social-link {
  margin-top: 20px;
  font-size: 0.9rem;
}

.social-link a {
  color: #f1f1f1;
  text-decoration: none;
}

.social-link a:hover {
  text-decoration: underline;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #f1f1f1;
  background-image: url("/assets/images/IMG_1641.webp");
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #48887b;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #3a6f64;
  transform: scale(1.05);
}

/* Efeito de pulsar para CTA principal */
.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 136, 123, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(72, 136, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 136, 123, 0);
  }
}

/* ======== SEÇÕES ======== */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: #2b2b2b;
  margin-bottom: 50px;
  position: relative;
}

h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #48887b;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ======== BENEFÍCIOS ======== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  overflow: hidden;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  object-position: 50% 20%;
  transition: transform 0.4s ease;
}

.benefit-item:hover img {
  transform: scale(1.08);
}

.benefit-item h3 {
  margin: 18px 0 10px;
  color: #48887b;
}

.benefit-item p {
  color: #555;
}

/* ======== SOBRE ======== */
.about {
  background-color: #f1f1f1;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  text-align: left;
}

.about-text p {
  margin: 15px 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ======== PLANOS ======== */
.pricing {
  background: linear-gradient(135deg, #48887b 0%, #3a6f64 100%);
  color: #fff;
}

.pricing h2 {
  color: #f8f9fa;
}

.pricing h2::after {
  background-color: #f8f9fa;
}

.plan-card {
  background: #fff;
  color: #333;
  border-radius: 16px;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.plan-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
  color: #48887b;
}

.plan-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.plan-card ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.plan-card ul li::before {
  content: "✓";
  color: #48887b;
  font-weight: bold;
}

/* ======== DEPOIMENTOS ======== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial span {
  font-weight: bold;
}

.testimonial:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ======== CHAMADA FINAL ======== */
.final-cta {
  background: #48887b;
  color: #fff;
  padding: 80px 20px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta h2::after {
  background-color: #f8f9fa;
}

.final-cta p {
  margin-bottom: 30px;
}

.final-cta .cta-button {
  background-color: #fff;
  color: #48887b;
}

.final-cta .cta-button:hover {
  background-color: #d9d9d9;
}

/* ======== FOOTER ======== */
footer {
  background: #2b2b2b;
  color: #d9d9d9;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #48887b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ======== WHATSAPP FLOAT ======== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3a6f64;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #25d366;
}

/* Botão Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.nav-toggle svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #3a6f64;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }

  .hero {
    background-image: url("/assets/images/IMG_1611.webp");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    padding: 8px;
  }
}

/* ======== FONTS ======== */

.social-link {
  margin-top: 20px;
  font-size: 0.9rem;
}

.social-link a {
  color: #f1f1f1;
  text-decoration: none;
}

.social-link a:hover {
  text-decoration: underline;
}
