:root {

  --bg: #fff8f8;
  --bg-card: #fff0f3;

  --pink-dark: #b56576;
  --pink-mid: #d291a3;
  --pink-light: #f7cad0;

  --gold: #e8b4b8;

  --text: #2b2b2b;
  --muted: #7a6f73;

  --white: #ffffff;

  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

/* NAV */

nav {
  position: sticky;
  top: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 2.5rem;

  background: rgba(255,248,248,0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0,0,0,0.05);

  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--pink-dark);
  text-decoration: none;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--pink-dark);
}

/* HAMBURGER */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.25rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* LANGUAGE */

.lang-toggle {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;

  background: var(--bg-card);
  color: var(--muted);

  cursor: pointer;
}

.lang-btn.active {
  background: var(--pink-dark);
  color: white;
}

/* HERO */

.hero {
  min-height: 90vh;

  max-width: 1180px;
  margin: auto;

  padding: 5rem 2.5rem;

  display: flex;
  align-items: center;
  gap: 4rem;

  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,202,208,0.55) 0%, transparent 70%);
  top: -200px;
  right: -180px;
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 580px;
}

.hero-pill {
  display: inline-block;

  background: var(--pink-light);

  padding: 0.45rem 1rem;

  border-radius: 999px;

  margin-bottom: 1.5rem;

  font-size: 0.75rem;
  font-weight: 600;

  color: var(--pink-dark);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3rem, 7vw, 5.4rem);

  line-height: 1.05;

  color: var(--pink-dark);

  margin-bottom: 1.5rem;
}

.hero h1 em {
  background: linear-gradient(135deg, var(--pink-dark) 0%, #e8a0b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  color: var(--muted);

  margin-bottom: 2rem;

  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;

  background: var(--pink-dark);
  color: white;

  text-decoration: none;

  padding: 0.9rem 1.8rem;

  border-radius: 999px;

  font-weight: 600;

  transition: 0.2s;

  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--pink-mid);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--pink-dark);

  text-decoration: none;

  padding: 0.9rem 0.5rem;

  font-weight: 600;
}

/* IMAGES */

.hero-image-wrap,
.about-img {
  overflow: hidden;
  border-radius: 30px;
}

.hero-image-wrap img,
.about-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-wrap {
  width: 350px;
  height: 450px;
  transition: transform 0.4s ease;
}

.hero-image-wrap:hover {
  transform: rotate(-2deg) scale(1.02);
}

.about-img {
  height: 500px;
  box-shadow: 14px 14px 0 var(--pink-light);
}

/* SECTIONS */

.section {
  padding: 6rem 2.5rem;
}

.container {
  max-width: 1180px;
  margin: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;

  background: var(--pink-light);
  color: var(--pink-dark);

  text-transform: uppercase;
  letter-spacing: 0.1em;

  font-size: 0.7rem;
  font-weight: 700;

  padding: 0.35rem 0.9rem;
  border-radius: 999px;

  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;

  color: var(--pink-dark);

  font-size: clamp(2.2rem, 5vw, 4rem);

  margin-bottom: 1rem;
}

.section-body {
  color: var(--muted);
}

/* ABOUT */

.about-section {
  background: white;
}

/* SERVICES */

.services-section {
  background: linear-gradient(180deg, #fff2f5 0%, var(--bg) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stats-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  background: var(--bg);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  min-width: 80px;
}

.stat-num {
  font-size: 2.2rem;
  color: var(--pink-dark);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* SERVICES */

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 1.5rem;

  margin-top: 3rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--pink-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(181,101,118,0.12);
  border-top-color: var(--pink-dark);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  margin-bottom: 1.25rem;
  transition: 0.3s;
}

.card:hover .card-icon {
  background: var(--pink-light);
}

.card h3 {
  color: var(--pink-dark);
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
textarea {
  width: 100%;

  padding: 1rem;

  border: 1px solid rgba(0,0,0,0.08);

  border-radius: 12px;

  font-family: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER */

footer {
  background: #f3d7de;

  text-align: center;

  padding: 2rem;

  color: var(--muted);
}

/* CTA BOX */

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--pink-dark);
  border-radius: 30px;
  padding: 3rem;
  flex-wrap: wrap;
}

.cta-box .section-label {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

.cta-box .section-title {
  color: white;
}

.cta-box .section-body {
  color: rgba(255,255,255,0.75);
}

.cta-box .btn-primary {
  background: white;
  color: var(--pink-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-box .btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

/* HERO ENTRANCE */

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

.hero-copy        { animation: fadeUp 0.7s ease both; }
.hero-image-wrap  { animation: fadeUp 0.7s 0.15s ease both; }

/* NAV SCROLL STATE */

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FLOATING WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

/* RESPONSIVE */

@media (max-width: 850px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.25rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-image-wrap {
    width: 100%;
    height: 260px;
  }

  .about-img {
    height: 260px;
  }

  .about-inner {
    gap: 2rem;
  }

  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: center;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
  }

  nav.nav-open .nav-links {
    max-height: 320px;
    padding: 0.25rem 0 1rem;
  }

  nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 2.5rem 1.25rem;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-hero,
  .contact-hero {
    padding: 5rem 1.25rem 2rem;
  }

  .price-card.featured {
    transform: scale(1);
  }

}
/* PRICING PAGE */

.pricing-hero {

  padding: 8rem 2rem 4rem;

  text-align: center;
}

.pricing-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3rem, 7vw, 5rem);

  color: var(--pink-dark);

  margin-bottom: 1rem;
}

.pricing-text {

  max-width: 650px;

  margin: auto;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.8;
}

/* PRICING GRID */

.pricing-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;
}

/* CARD */

.price-card {

  background: white;

  border-radius: 30px;

  padding: 2.5rem 2rem;

  border: 1px solid rgba(0,0,0,0.06);

  position: relative;

  transition: 0.25s;

  display: flex;
  flex-direction: column;
}

.price-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.price-card.featured {

  border: 2px solid var(--pink-mid);

  transform: scale(1.03);
}

.popular-badge {

  position: absolute;

  top: -14px;
  left: 50%;

  transform: translateX(-50%);

  background: var(--pink-dark);

  color: white;

  padding: 0.5rem 1rem;

  border-radius: 999px;

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.08em;
}

.price-card h2 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 2rem;

  color: var(--pink-dark);

  margin-bottom: 1rem;
}

.price {

  font-size: 3rem;

  font-weight: 700;

  margin-bottom: 2rem;
}

.price span {

  font-size: 1rem;

  color: var(--muted);

  font-weight: 500;
}

.price-features {

  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin-bottom: 2rem;
}

.price-features li {

  color: var(--muted);

  padding-left: 1.5rem;

  position: relative;
}

.price-features li::before {

  content: "✦";

  position: absolute;

  left: 0;

  color: var(--pink-mid);
}

/* CONTACT PAGE */

.contact-hero {

  padding: 8rem 2rem 4rem;

  text-align: center;
}

.contact-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3rem, 7vw, 5rem);

  color: var(--pink-dark);

  margin-bottom: 1rem;
}

.contact-text {

  max-width: 600px;

  margin: auto;

  color: var(--muted);

  line-height: 1.8;
}

/* GRID */

.contact-page-grid {

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 3rem;

  align-items: start;
}

/* LEFT BOX */

.contact-info-box {

  background: white;

  border-radius: 30px;

  padding: 2.5rem;

  display: flex;
  flex-direction: column;

  gap: 2rem;
}

/* FORM CARD */

.contact-form-card {

  background: white;

  border-radius: 30px;

  padding: 2.5rem;
}

/* CONTACT ACTIONS */

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: white;
  border-radius: 30px;
  padding: 3rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
  transition: 0.25s;
}

.contact-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.action-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
}

.contact-action-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--pink-dark);
}

.contact-action-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.action-cta {
  margin-top: 0.5rem;
  background: var(--pink-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.2s;
}

.contact-action-card:hover .action-cta {
  background: var(--pink-mid);
}

@media (max-width: 600px) {

  .contact-actions {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

}