/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2a5a5a;
  --secondary-color: #4a7c7c;
  --accent-color: #7fb069;
  --light-color: #f5f5f5;
  --dark-color: #1a3a3a;
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --yellow-custom: #e3d5b3;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Base */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

/* Imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-img {
  /* width: 50px; */
  height: 50px;
  /* border-radius: 50%; */
  object-fit: cover;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  /* width: 50px; */
  height: 50px;
  /* border-radius: 50%; */
  object-fit: cover;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.hero-content {
  flex: 1;
  padding-right: 60px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Botões */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

.btn-full {
  width: 100%;
}

/* Section Base */
.section {
  padding: 100px 0;
}

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

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-line {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Nossa História */
.historia {
  /* background: var(--yellow-custom); */
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.historia-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.historia-detalhes h3,
.equipe-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.lojas-info {
  margin: 2rem 0;
}

.loja-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 20px;
  background: var(--light-color);
  border-radius: var(--border-radius);
}

.loja-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.loja-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tecnica-destaque {
  background: linear-gradient(135deg, var(--light-color), var(--yellow-custom));
  padding: 25px;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  border-left: 4px solid var(--accent-color);
}

.historia-imagem {
  display: flex;
  justify-content: center;
}

.historia-img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Como Funciona */
.como-funciona {
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.funciona-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.funciona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.funciona-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.funciona-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.funciona-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Diferenciais */
.diferenciais {
  /* background: var(--white); */
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.diferencial-principal {
  text-align: center;
  margin-bottom: 3rem;
}

.diferencial-principal h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.diferencial-categoria {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.diferencial-categoria h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.terapias-lista,
.ambiente-lista {
  list-style: none;
  margin-top: 1.5rem;
}

.terapias-lista li,
.ambiente-lista li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.terapias-lista li::before,
.ambiente-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

.terapias-lista i,
.ambiente-lista i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* Depoimentos */
.depoimentos {
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.cliente-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cliente-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.avaliacao {
  display: flex;
  gap: 3px;
}

.avaliacao i {
  color: #ffd700;
  font-size: 0.9rem;
}

.depoimento-texto {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.depoimento-data {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: right;
  display: block;
}

/* Contato */
.contato {
  /* background: var(--white); */

  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    var(--yellow-custom) 100%
  );
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 25px;
  background: var(--light-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-icon a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: var(--transition);
}

.info-icon a:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Efeito especial para o Instagram */
.info-icon a[href*="instagram.com"] {
  background: linear-gradient(
    45deg,
    #833ab4,
    #fd1d1d,
    #f77737,
    #fcaf45,
    #ffdc80
  );
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.info-icon a[href*="instagram.com"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.info-icon a[href*="instagram.com"]:hover::before {
  left: 100%;
}

.info-icon a[href*="instagram.com"]:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(131, 58, 180, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(131, 58, 180, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(131, 58, 180, 0);
  }
}

.info-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-content a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.info-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Estilo especial para o link do Instagram */
.info-content a[href*="instagram.com"] {
  background: linear-gradient(
    45deg,
    #833ab4,
    #fd1d1d,
    #f77737,
    #fcaf45,
    #ffdc80
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Formulário */
.form {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 90, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-section p {
  line-height: 1.8;
}

.footer-section i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

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

  .historia-content,
  .contato-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .section {
    padding: 60px 0;
  }

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

  .funciona-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 2rem;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

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

  .diferencial-categoria,
  .funciona-card {
    padding: 2rem;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utilitários */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}
