/* ====================== */
/* VARIÁVEIS              */
/* ====================== */
:root {
  --primary-color: #C5AE8E;
  --secondary-color: #763D0E;
  --accent-color: #944C12;
  --dark-color: #1a2a36;
  --light-color: #FAF6F3;
  --text-dark: #4a5568;
  --white: #fff;

  --font-family: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ====================== */
/* ANIMAÇÕES              */
/* ====================== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes float-pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes badge-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@keyframes floatIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ====================== */
/* BASE                   */
/* ====================== */
body {
  font-family: var(--font-family);
  background-color: var(--light-color);
}

h2 {
  color: var(--secondary-color);
  font-size: 32px;
  font-weight: 400;
}

.text-bege {
  color: var(--accent-color);
}

/* ====================== */
/* COMPONENTES            */
/* ====================== */

/* Botão WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--box-shadow);
  animation: float-pulse 2s ease-in-out infinite;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-btn i {
  color: white;
  font-size: 32px;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 25px;
  height: 25px;
  padding: 2px;
  background: #FF4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid white;
  animation: badge-pulse 1.5s infinite;
}

.badge-pop {
  animation: pop 0.3s ease-out;
}

/* Botões de rede social */
.botao-whatsapp:hover,
.botao-instagram:hover {
  background: var(--secondary-color);
  transform: translateY(-1.2px);
  border-radius: 40px;
}

/* Botões CTA */
.cta-button {
  padding: 15px 40px;
  font-size: 1.1rem;
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ====================== */
/* HEADER                 */
/* ====================== */
.header {
  background: var(--primary-color);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-link,
.nav-link-button {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-link-button:hover,
.nav-link-button.active {
  color: var(--secondary-color) !important;
}

.nav-link:hover::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
}

.contact-btn {
  background: var(--secondary-color);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
  transition: var(--transition);
}

.contact-btn:hover {
  transform: translateY(-2px);
  color: white !important;
}

.contact-btn:hover::after {
  content: none;
}

/* ====================== */
/* HERO SECTION           */
/* ====================== */
.hero-section {
  padding: 100px 0;
  background: var(--primary-color);
}

/* .content-wrapper {
  display: flex;
  align-items: center;
  min-height: 70vh;
} */

/* .text-content {
  max-width: 700px;
  padding-right: 50px;
} */

.main-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  /* margin-bottom: 30px; */
  color: var(--white);
}

.lead-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--white);
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================== */
/* SERVIÇOS               */
/* ====================== */
.nav-pills .nav-link-servicos {
  border: none;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
  transition: var(--transition);
  color: var(--dark-color);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link-servicos:hover {
  transform: translateX(10px);
  background: var(--secondary-color);
  color: var(--white);
}

.nav-pills .nav-link-servicos.active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border-left: 4px solid var(--dark-color);
}

.botao-vamos-conversar-servicos {
  background: var(--secondary-color) !important;
  border: var(--primary-color);
  transition: var(--transition);
}

.botao-vamos-conversar-servicos:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ====================== */
/* QUEM SOMOS             */
/* ====================== */
.quem-somos-section {
  position: relative;
  min-height: 60vh;
  margin: 100px 0;
  overflow: hidden;
}

.background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}

.content-overlay {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  height: 100%;
}

.text-box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem !important;
  box-shadow: var(--card-shadow);
}

/* ====================== */
/* ESPECIALISTAS          */
/* ====================== */
.specialist-card {
  position: relative;
  overflow: hidden;
}

.image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.specialist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jessica-img {
  object-position: center 70%;
}

.lucca-img {
  height: auto;
  object-fit: contain;
  object-position: 80% -20%;
}

.specialist-card:hover .specialist-img {
  transform: scale(1.05);
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.specialist-card:hover .text-overlay {
  transform: translateY(0);
}

/* ====================== */
/* LOCALIZAÇÃO            */
/* ====================== */
.localizacao-section {
  background: var(--light-color) !important;
}

/* ====================== */
/* CONTATO & RODAPÉ       */
/* ====================== */
.contato-section {
  background: var(--light-color);
  padding: 4rem 0 1rem 0;
}

.info-contato {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--primary-color);
}

/* ====================== */
/* MEDIA QUERIES          */
/* ====================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark-color);
    padding: 1rem;
    margin-top: 1rem;
  }

  .contact-btn {
    margin-left: 0;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    height: 400px;
  }

  .text-overlay {
    padding: 20px;
    bottom: -30px;
  }
}

@media (max-width: 767px) {
  .main-title {
    font-size: 2.8rem;
  }

  .text-content {
    padding-right: 0;
  }

  .image-container {
    height: 300px;
  }

  .content-overlay {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .mapa-container {
    height: 300px;
  }

  .text-box {
    padding: 30px !important;
  }
}