/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #f9f9f9;
}

/* CONTAINERS */
.container__navbar,
.container__hero,
.container__sobre,
.container__servicos,
.container__equipe,
.container__contato,
.container__footer {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* --- NAVBAR --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f6b0f; 
  padding: 10px 40px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 6px; 
}

.logo {
  height: 40px; 
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

/* LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d6e642;
}

/* Responsivo */
@media (max-width: 768px) {
  .container__navbar {
    flex-direction: column;
    gap: 10px;
  }

  .logo-container {
    justify-content: center;
  }
}

/* HERO */
.hero {
  background: url("https://cdna.artstation.com/p/assets/images/images/063/690/740/original/onlytheocean-snwrnr-cover-2-animated.gif?1686133067") center bottom/cover no-repeat;
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  min-height: 70vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
}

.hero .container__hero {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #d6e642;
  color: #0d730d;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero .btn:hover {
  background-color: #c4d834;
}

/* CONTENT SECTIONS (geral) */
.content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.content-section.alt {
  background-color: #f1fdf1;
}

.content-section h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #0d730d;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* QUEM SOMOS E SERVIÇOS */
.container__sobre,
.container__servicos {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container__sobre p,
.container__servicos ul {
  max-width: 800px;
}

/* TEXTO GERAL */
.content-section p {
  font-size: 1.1rem;
}

/* BENEFÍCIOS */
.benefits {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  text-align: left;
}

.benefits li {
  margin-bottom: 10px;
}

/* FORMULÁRIO DE CONTATO */
form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form .btn {
  background-color: #0d730d;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

form .btn:hover {
  background-color: #0b5a0b;
}

/* FOOTER */
footer {
  background-color: #0d730d;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* --- SEÇÃO EQUIPE --- */
.container__equipe {
  text-align: center;
  max-width: 1200px; 
  margin: 0 auto;
}

.team-photo-container {
  position: relative;
  display: inline-block; 
  margin-top: 20px;
  overflow: hidden; 
  border-radius: 8px; 
}

.team-photo {
  max-width: 100%;
  height: auto;
  display: block;
}

.team-member-hotspot {
  position: absolute;
  top: 0;
  height: 100%; 
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;  
  clip-path: inset(0 0 0 0);
}

.team-member-hotspot:hover {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
}

.member-info {
  position: absolute;
  top: 55%; 
  left: 50%;
  transform: translateX(-50%);  
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap; 
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.member-info h4 {
  margin: 0 0 3px 0;
  font-size: 0.9em;
}

.member-info p {
  margin: 0;
  font-size: 0.75em;
  font-weight: 400;
  color: #666;
}

.team-member-hotspot:hover + .team-photo,
.team-member-hotspot:hover ~ .team-photo {
    transform: scale(1.05);
    transition: transform 0.4s ease-in-out;
}

.team-member-hotspot:hover .member-info {
  opacity: 1; 
  transform: translateX(-50%); 
}

/* --- Posicionamento e Dimensão dos Hotspots --- */

/* Pessoa 1: Bárbara Silva */
.team-member-hotspot.person-1 {
  left: 0%; 
  width: 20%; 
}

/* Pessoa 2: Ana Karolina */
.team-member-hotspot.person-2 {
  left: 20%;
  width: 20%;
}

/* Pessoa 3: Ana Carolina (Centro) */
.team-member-hotspot.person-3 {
  left: 40%;
  width: 20%;
}

/* Pessoa 4: João Victor */
.team-member-hotspot.person-4 {
  left: 60%;
  width: 20%;
}

/* Pessoa 5: Gabriel Makiyama */
.team-member-hotspot.person-5 {
  left: 80%;
  width: 20%;
}

/* --- CARROSSEL DE SERVIÇOS --- */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 2rem auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.carousel-item img {
  width: 550px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0d730d;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  background-color: #3eb33e;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

/* FEEDBACKS */
.container__feedbacks {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.feedback-carousel {
  position: relative;
  overflow: hidden;
}

.feedback-carousel .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.feedback-pair {
  display: flex;
  gap: 20px;
  flex: 0 0 100%;
  justify-content: center;
}

.feedback-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  width: 45%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feedback-card h4 {
  color: #007B55;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.feedback-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Botões do carrossel */
.feedback-carousel .carousel-btn {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #007B55;
  transition: color 0.3s ease;
}

.feedback-carousel .carousel-btn:hover {
  color: #009b72;
}

.feedback-carousel .prev {
  left: 10px;
}

.feedback-carousel .next {
  right: 10px;
}


