* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #a9acac, #93d5e0);
  color: #222;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 28px;
  background: rgba(237, 249, 252, 0.85);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #0a2e36;
}

nav#nav {
  display: flex;
  gap: 22px;
}

nav#nav a {
  text-decoration: none;
  color: #0a2e36;
  font-weight: 600;
  transition: color .2s ease;
}

nav#nav a:hover {
  color: #00796b;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0a2e36;
  border-radius: 3px;
}

main {
  padding-top: 100px;
}


.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 36px;
  color: #000;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  color: #333;
  font-size: 18px;
}

.hero-img {
  width: 550px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


section {
  padding: 80px 20px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.content.reverse {
  flex-direction: row-reverse;
}

.section-img {
  width: 500px;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.text {
  max-width: 560px;
}

.text h2 {
  color: #000;
  margin-bottom: 12px;
  font-size: 28px;
}

.text p {
  color: #333;
  line-height: 1.6;
}


.section1 {
  background: rgba(255,255,255,0.25);
}

.section2 {
  background: rgba(255,255,255,0.4);
}


footer {
  background: #000;
  color: #fff;
  padding: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-nav {
  display: flex;
  gap: 15px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}


@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  nav#nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 15px;
    top: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
  }

  nav#nav.active {
    display: flex;
  }

  .content {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

