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

body {
font-family: "helvetica-lt-pro", sans-serif;
font-weight: 400;
font-style: normal;
}

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

/* Header Styles */
.header {
  background-color: white;
  padding: 15px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  z-index: 12;
}

.logo-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  font-weight: bold;
  color: #2c5f5d;
}

.logo-icon {
  width: 171px;
  height: 64px;
}

.droplet {
  width: 100%;
  height: 100%;
  background-color: #2c5f5d;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
}

.circle-1 {
  width: 8px;
  height: 8px;
  top: 8px;
  left: 12px;
}

.circle-2 {
  width: 8px;
  height: 8px;
  top: 8px;
  right: 12px;
}

.circle-3 {
  width: 8px;
  height: 8px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Navigation Styles */
.navigation {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  justify-self: center;
   position: fixed;
}

.nav-link {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 16px;
  color: #2c5f5d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  z-index: 11;
}

.nav-link:hover {
  color: #1a4a48;
}

/* Hero Section */
.hero {
  height: 50vh;
  background-image: url('./images/cell-bink.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 95, 93, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: "adobe-caslon-pro", serif;
font-style: normal;
  font-size: 500%;
  font-weight: 400;
  color: white;
  text-align: center;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
  z-index: 1;
}

.about-us-content {
  width: 100%;
  max-width: 1000px;
  padding: 0 40px;
  z-index: 1;
  text-align: left;
}
.product-background {
  position: absolute;
  top: -50px;
  right: -100px;
  bottom: 0;
  width: 510px;
  height: 200%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}
.section-subtitle {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 1.2rem;
  color: #c94065;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-title {
 font-family: "adobe-caslon-pro", serif;
  font-size: 2.5rem;
  color: #0b3443;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-text {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.highlight {
  font-weight: bold;
  color: #0b3443;
}

.about-us-background {
  position: absolute;
  top: -50px;
  right: -100px;
  bottom: 0;
  width: 510px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .logo {
    justify-self: center;
  }

  .navigation {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2.5rem;
    padding: 0 20px;
  }

  .logo-text {
    font-size: 24px;
  }

  .about-us {
    flex-direction: column;
    text-align: center;
  }

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

  .about-us-background {
    position: static;
    margin-top: 40px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-us-background .background-svg {
    width: 250px;
    height: auto;
  }
}

/* Features Section */
.features-section {
  background-color: #2c5f5d;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  min-height: 200px;
  justify-content: flex-start;
}


.feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin: 0 0 30px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Features */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .feature-card {
    padding: 25px 15px;
    min-height: 180px;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .feature-icon svg {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 1rem;
    min-height: 45px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .navigation {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }
}

.products-section {
  padding: 80px 0;
  background-color: #fff;
}

.products-section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 700px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}

.left-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.product-title {
  font-family: "adobe-caslon-pro", serif;
  font-size: 3.5rem;
  font-weight: normal;
  color: #4c4c4c;
  position: relative;
  white-space: nowrap;
  line-height: 1;
  z-index: 11;
}

.droplet-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.droplet-shape {
  width: 100%;
  height: 100%;
  border-radius: 50% / 60% 60% 40% 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.learn-more-text {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
  white-space: nowrap;
}
#saiba-mais-verde {
  color: #1a4a48
}
#saiba-mais-vermelho {
  color: #c94065
}
#saiba-mais-cinza {
  color: #0b3443
}
.droplet-circles {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.droplet-circles .circle {
  position: static;
  border: 2px solid white;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: transparent;
}

.green-theme .marker-line {
  background-color: #a7b7b6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 650px;
  height: 16px;
  border-radius: 6px;
  z-index: 10;
}

.green-theme .droplet-shape {
  background-color: #2c5f5d;
}

.green-theme .learn-more-text {
  color: #fff;
}

.red-theme .marker-line {
  background-color: #e2c0c9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 650px;
  height: 16px;
  border-radius: 6px;
  z-index: 10;
}

.red-theme .droplet-shape {
  background-color: #c94065;
}

.red-theme .learn-more-text {
  color: #fff;
}

.gray-theme .marker-line {
  background-color: #b7b7b7;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 650px;
  height: 16px;
  border-radius: 6px;
  z-index: 10;
}
.navigation .marker-line {
  background-color: #b7b7b7;
  opacity: 80%;
  position: absolute;
  bottom: -10;
  left: -10;
  width: 400px;
  height: 50px;
  border-radius: 30px;
  z-index: 10;
}
.gray-theme .droplet-shape {
  background-color: #4c4c4c;
}

.gray-theme .learn-more-text {
  color: #fff;
}


@media (max-width: 768px) {
  .product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  .left-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .product-title {
    font-size: 2rem;
    white-space: normal;
    text-align: center;
  }

  .green-theme .marker-line,
  .red-theme .marker-line,
  .gray-theme .marker-line {
    position: relative;
    width: 80%;
    height: 10px;
    margin: 10px auto;
  }

  .droplet-link {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
  }

  .droplet-circles .circle {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }

  .marker-line {
    width: 70%;
    height: 8px;
  }

  .droplet-link {
    width: 80px;
    height: 80px;
  }

  .learn-more-text {
    font-size: 0.9rem;
  }

  .droplet-circles .circle {
    width: 12px;
    height: 12px;
  }
}


.team-section {
  padding: 80px 0;
  background-color: #fff;
}

.team-section .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member-card {
  border-radius: 15px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: transparent;
}

.member-photo-container {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: none;
}

.member-photo {
  width: 100%;
  height: auto;
  display: block;
}

.member-name {
  font-family: "adobe-caslon-pro", serif;
  font-size: 1.5rem;
  color: #0b3443;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.member-description {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}


@media (max-width: 768px) {
  .team-section .container {
    flex-direction: column;
    align-items: center;
  }

  .team-member-card {
    align-items: flex-start;
  }
}

.footer {
  background-color: #fff;
  padding: 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: #e0e0e0;
}

.footer-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 40px;
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.footer-navigation {
  display: flex;
  gap: 30px;
}

.footer-nav-link {
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  color: #4c4c4c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #0b3443;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-text {
  line-height: 1.2;
  text-align: right;
}

.profile-name {
  font-family: 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #0b3443;
  font-weight: normal;
}

.profile-role {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #4c4c4c;
}

.profile-photo-container {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-container {
  width: 40px;
  height: 40px;
}

.footer-copyright {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #4c4c4c;
}

.rights-reserved {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #4c4c4c;
}


@media (max-width: 768px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-text {
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 5px;
  }
}

