/* ============================================
   ANIMABELLE - CLÍNICA DE ESTÉTICA AVANÇADA
   Stylesheet Principal
   Versão: 1.0.0
   ============================================ */

/* ============================================
   1. VARIÁVEIS CSS (Custom Properties)
   ============================================ */
:root {
  --rosa-claro: #f7eef2;
  --rosa: #c990a5;
  --rosa-escuro: #a46c7d;
  --cinza: #5b5b5b;
  
  /* Transições padrão */
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
}

/* ============================================
   2. RESET E BASE
   ============================================ */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  background: linear-gradient(180deg, #fff 0%, #f7eef2 100%);
  background: linear-gradient(180deg, #fff 0%, var(--rosa-claro) 100%);
  color: #5b5b5b;
  color: var(--cinza);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #a46c7d;
  color: var(--rosa-escuro);
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   3. NAVEGAÇÃO (NAVBAR)
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 144, 165, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  display: block;
  transform: scale(1.2);
  transform-origin: left center;
}

.nav-link {
  position: relative;
  margin: 0 10px;
  font-weight: 500;
  color: var(--cinza) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--rosa);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rosa-escuro) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateY(0);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c990a5;
  background: var(--rosa);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-highlight:hover {
  background: #a46c7d;
  background: var(--rosa-escuro);
  color: #fff !important;
  transform: translateY(-2px);
  text-decoration: none;
}

#hero {
  padding: 0;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(110deg, rgba(164, 108, 125, 0.75), rgba(247, 238, 242, 0.65));
  color: #fff;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.15);
  top: -120px;
  right: -160px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(247, 238, 242, 0.4);
  bottom: -120px;
  left: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-carousel .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.hero-carousel .carousel-item .hero {
  min-height: 90vh;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 4.5rem;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: invert(1);
}

.hero-carousel .carousel-indicators {
  bottom: 40px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.hero-carousel .carousel-indicators .active {
  background-color: #fff;
}


.hero-slide-1 {
  background: linear-gradient(110deg, rgba(164, 108, 125, 0.75), rgba(247, 238, 242, 0.65)),
    url('../imagens/banner1.png') center right/50% no-repeat;
}

.hero-slide-2 {
  background: linear-gradient(110deg, rgba(201, 144, 165, 0.75), rgba(164, 108, 125, 0.65)),
    url('../imagens/banner2.png') center right/50% no-repeat;
}

.badge-soft {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

section {
  padding: 80px 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-header p {
  color: rgba(91, 91, 91, 0.8);
}

/* ============================================
   7. CARDS DE SERVIÇOS
   ============================================ */
.service-card {
  height: 100%;
  border: 0;
  border-radius: 18px;
  padding: 32px 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(164, 108, 125, 0.12);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(164, 108, 125, 0.2);
}

.service-card i {
  font-size: 2rem;
  color: var(--rosa);
  margin-bottom: 18px;
}

.service-card h5 {
  color: var(--rosa-escuro);
  font-weight: 600;
}

.differential-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(164, 108, 125, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 144, 165, 0.1);
  position: relative;
  overflow: hidden;
}

.differential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rosa), var(--rosa-escuro));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.differential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(164, 108, 125, 0.2);
  border-color: rgba(201, 144, 165, 0.3);
}

.differential-card:hover::before {
  transform: scaleX(1);
}

.differential-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 144, 165, 0.15), rgba(164, 108, 125, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.differential-card:hover .differential-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(201, 144, 165, 0.25), rgba(164, 108, 125, 0.2));
}

.differential-icon i {
  font-size: 2.2rem;
  color: var(--rosa-escuro);
}

.differential-card h4 {
  color: var(--rosa-escuro);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.differential-card p {
  color: rgba(91, 91, 91, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

.journey-section {
  background: linear-gradient(135deg, rgba(247, 238, 242, 0.6), rgba(255, 255, 255, 0.9));
  border-radius: 32px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 144, 165, 0.08);
  filter: blur(80px);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.journey-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(164, 108, 125, 0.06);
  filter: blur(60px);
  bottom: -80px;
  left: -80px;
  z-index: 0;
}

.journey-content {
  position: relative;
  z-index: 1;
}

.journey-badge {
  display: inline-block;
  background: rgba(201, 144, 165, 0.15);
  color: var(--rosa-escuro);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.journey-content h2 {
  color: var(--rosa-escuro);
  font-size: 2.5rem;
  font-weight: 700;
}

.journey-steps {
  margin-top: 40px;
}

.journey-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.journey-step:nth-child(1) {
  animation-delay: 0.1s;
}

.journey-step:nth-child(2) {
  animation-delay: 0.2s;
}

.journey-step:nth-child(3) {
  animation-delay: 0.3s;
}

.journey-step-number {
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-escuro));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(164, 108, 125, 0.3);
  flex-shrink: 0;
}

.journey-step-content h5 {
  color: var(--rosa-escuro);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.journey-step-content p {
  color: rgba(91, 91, 91, 0.75);
  line-height: 1.7;
  margin: 0;
}

.journey-visual {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.journey-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 15px 40px rgba(164, 108, 125, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 144, 165, 0.1);
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 150px;
}

.journey-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(164, 108, 125, 0.25);
}

.journey-card i {
  font-size: 1.8rem;
  color: var(--rosa);
}

.journey-card span {
  font-weight: 600;
  color: var(--rosa-escuro);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
}

.journey-card-1 {
  animation: float 3s ease-in-out infinite;
}

.journey-card-2 {
  animation: float 3s ease-in-out infinite 0.5s;
}

.journey-card-3 {
  animation: float 3s ease-in-out infinite 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.profile-img {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(201, 144, 165, 0.35);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.about-card {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(164, 108, 125, 0.12);
  padding: 35px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-list span {
  background: rgba(201, 144, 165, 0.18);
  color: var(--rosa-escuro);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
}

.testimonial-card {
  border: none;
  border-radius: 18px;
  background: #fff;
  padding: 32px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(164, 108, 125, 0.12);
  text-align: left;
}

.testimonial-card i {
  font-size: 2rem;
  color: var(--rosa);
  margin-bottom: 12px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--rosa-escuro);
  margin-top: 18px;
}

.contact-section {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 50px rgba(164, 108, 125, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(164, 108, 125, 0.15);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 144, 165, 0.18);
  display: grid;
  place-items: center;
  color: var(--rosa-escuro);
  font-size: 1.3rem;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.cta-banner {
  background: linear-gradient(120deg, rgba(164, 108, 125, 1), rgba(201, 144, 165, 0.85));
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -140px;
  right: -180px;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.3);
  z-index: 1050;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  color: #fff;
}

footer {
  background: #fff;
  padding: 32px 0;
  border-top: 1px solid rgba(201, 144, 165, 0.2);
}

footer p {
  margin: 0;
  color: rgba(91, 91, 91, 0.75);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .navbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 90px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .badge-soft {
    margin: 0 auto 20px;
  }

  .journey-section {
    padding: 40px 30px;
  }

  .journey-content h2 {
    font-size: 2rem;
  }

  .journey-visual {
    margin-top: 40px;
    align-items: center;
  }

  .journey-card {
    padding: 20px;
    width: 100%;
    max-width: 250px;
  }
}

/* ============================================
   9. MEDIA QUERIES - MOBILE
   Breakpoint: 767px
   ============================================ */
@media (max-width: 767px) {
  section {
    padding: 45px 0 !important;
  }

  .navbar-brand img {
    height: 40px !important;
    transform: scale(1) !important;
  }

  .hero {
    min-height: 65vh !important;
    padding: 90px 0 50px !important;
  }

  .hero-slide-1,
  .hero-slide-2 {
    background-size: 100% !important;
    background-position: center !important;
  }

  .hero h1 {
    font-size: 1.8rem !important;
    margin-bottom: 14px !important;
    line-height: 1.3 !important;
  }

  .hero .lead {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  .badge-soft {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .btn-highlight {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-outline-light {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }

  .service-card i {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }

  .service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .differential-card {
    padding: 28px 20px;
    margin-bottom: 20px;
  }

  .differential-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }

  .differential-icon i {
    font-size: 1.6rem;
  }

  .differential-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .differential-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .journey-section {
    padding: 35px 20px;
    border-radius: 24px;
  }

  .journey-content h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .journey-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .journey-step {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    margin-bottom: 28px;
  }

  .journey-step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin: 0 auto;
  }

  .journey-step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .journey-step-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .journey-visual {
    margin-top: 30px;
  }

  .journey-card {
    padding: 18px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 15px;
  }

  .journey-card i {
    font-size: 2rem;
  }

  .journey-card span {
    font-size: 0.85rem;
  }

  .about-card {
    padding: 28px 20px;
  }

  .about-card h2 {
    font-size: 1.8rem;
  }

  .profile-img {
    width: 220px;
    height: 300px;
    margin-bottom: 24px;
  }

  .testimonial-card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }

  .testimonial-card i {
    font-size: 1.6rem;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 28px 20px;
  }

  .contact-item {
    margin-bottom: 18px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .contact-item h6 {
    font-size: 0.95rem;
  }

  .contact-item p,
  .contact-item a {
    font-size: 0.9rem;
  }

  iframe {
    min-height: 350px;
    border-radius: 16px;
  }

  .cta-banner {
    padding: 35px 24px;
    border-radius: 20px;
  }

  .cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 28px;
    right: 20px;
    bottom: 20px;
  }
}

