/* ===================================
   LP Dra. Érica Mello — Multicare
   Landing Page de Captação
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..800;1,300..800&family=Inter:wght@100..900&display=swap');

/* ---- CSS Variables (Brand Multicare) ---- */
:root {
  --brand-white: #FFFFFF;
  --brand-beige: #F5F5DC;
  --brand-rose: #FDF6F6;
  --brand-gold: #D4AF37;
  --brand-gold-light: #E5D5B5;
  --brand-gold-dark: #B8952E;
  --brand-ink: #2A1B14;
  --brand-muted: #7A7A7A;
  --font-serif: "Montserrat", sans-serif;
  --font-sans: "Inter", sans-serif;
  --shadow-xl: 0 20px 60px rgba(42, 27, 20, 0.15);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--brand-ink);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Layout ---- */
.lp-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #fefcf9 0%, var(--brand-rose) 30%, #f7f0e6 55%, var(--brand-beige) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.lp-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.lp-wrapper::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(253,246,246,0.3) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

/* Extra decorative blobs */
.lp-decor-1,
.lp-decor-2,
.lp-decor-3,
.lp-decor-4 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lp-decor-1 {
  top: 15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, rgba(212,175,55,0.05) 50%, transparent 70%);
  filter: blur(50px);
}

.lp-decor-2 {
  top: 50%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(245,245,220,0.6) 40%, transparent 70%);
  filter: blur(45px);
}

.lp-decor-3 {
  bottom: 20%;
  left: 30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(253,246,246,0.5) 40%, transparent 70%);
  filter: blur(55px);
}

.lp-decor-4 {
  top: 5%;
  right: 25%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  filter: blur(35px);
}

/* Subtle diagonal line accents */
.lp-line-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.lp-line-accent-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  transform: rotate(-30deg);
  filter: blur(1px);
}

.lp-line-accent-2 {
  bottom: 30%;
  left: 5%;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.18), transparent);
  transform: rotate(25deg);
  filter: blur(1px);
}

.lp-line-accent-3 {
  top: 40%;
  right: 20%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
  transform: rotate(-45deg);
  filter: blur(1px);
}

/* ---- Top Bar ---- */
.lp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: relative;
  z-index: 10;
  animation: fadeSlideDown 0.6s ease-out;
}

.lp-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  mix-blend-mode: multiply;
}

.lp-badge-topbar {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
  background: rgba(212, 175, 55, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ---- Hero Section ---- */
.lp-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 40px;
  position: relative;
  z-index: 1;
}

.lp-hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* ---- Photo Side ---- */
.lp-photo-container {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeScaleIn 0.8s ease-out;
}

.lp-photo-frame {
  position: relative;
  width: 320px;
  max-width: 100%;
}

.lp-photo-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 50%, var(--brand-gold) 100%);
  z-index: -1;
  opacity: 0.4;
}

.lp-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.lp-photo-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-ink);
  color: var(--brand-gold-light);
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(42,27,20,0.25);
}

/* ---- Content Side ---- */
.lp-content {
  text-align: center;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.lp-subtitle {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand-gold);
  margin-bottom: 12px;
  display: block;
}

.lp-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand-ink);
  margin-bottom: 16px;
}

.lp-title-highlight {
  color: var(--brand-gold);
  display: block;
}

.lp-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Trust Badges ---- */
.lp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.lp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 8px 14px;
  border-radius: 100px;
}

.lp-trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

/* ---- CTA Button ---- */
.lp-cta-wrapper {
  animation: fadeSlideUp 0.8s ease-out 0.5s both;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.lp-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.lp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.lp-cta-btn:hover::before {
  left: 100%;
}

.lp-cta-btn:active {
  transform: translateY(-1px);
}

.lp-cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: pulseIcon 2s ease-in-out infinite;
}

.lp-cta-subtext {
  text-align: center;
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ---- Services Section ---- */
.lp-services {
  padding: 40px 24px 48px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.04) 100%);
}

.lp-services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.lp-services-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand-gold);
  margin-bottom: 24px;
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: var(--brand-ink);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.lp-service-card:active {
  transform: translateY(-1px);
}

.lp-service-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.lp-service-card:hover .lp-service-icon {
  background: rgba(212, 175, 55, 0.15);
}

.lp-service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand-gold);
}

.lp-service-info {
  flex: 1;
  min-width: 0;
}

.lp-service-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.3;
}

.lp-service-arrow {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.lp-service-card:hover .lp-service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Bottom Bar ---- */
.lp-bottom {
  text-align: center;
  padding: 16px 24px 24px;
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.8s ease-out 0.7s both;
}

.lp-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--brand-muted);
  font-weight: 500;
}

.lp-location svg {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
}

/* ---- WhatsApp Fixed Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounceIn 0.8s ease-out 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* ---- Animations ---- */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ---- Responsive: Tablet+ ---- */
@media (min-width: 768px) {
  .lp-topbar {
    padding: 24px 48px;
  }

  .lp-logo {
    height: 64px;
  }

  .lp-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .lp-service-name {
    font-size: 14px;
  }

  .lp-badge-topbar {
    font-size: 11px;
    padding: 8px 20px;
  }

  .lp-hero {
    padding: 0 48px 40px;
  }

  .lp-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .lp-photo-frame {
    width: 360px;
  }

  .lp-content {
    text-align: left;
  }

  .lp-title {
    font-size: 38px;
  }

  .lp-description {
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .lp-trust-badges {
    justify-content: flex-start;
  }

  .lp-cta-btn {
    width: auto;
    padding: 22px 48px;
    font-size: 16px;
  }

  .lp-cta-subtext {
    text-align: left;
  }
}

/* ---- Responsive: Desktop ---- */
@media (min-width: 1024px) {
  .lp-topbar {
    padding: 28px 64px;
  }

  .lp-hero {
    padding: 0 64px 48px;
  }

  .lp-hero-inner {
    gap: 64px;
  }

  .lp-photo-frame {
    width: 400px;
  }

  .lp-title {
    font-size: 44px;
  }

  .lp-trust-badge {
    font-size: 13px;
    padding: 10px 18px;
  }

  .lp-logo {
    height: 72px;
  }

  .lp-services {
    padding: 48px 64px 56px;
  }

  .lp-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Hide scrollbar utility ---- */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
