:root {
  --bg: #fff7fb;
  --bg-soft: #fff0f7;
  --card: rgba(255, 255, 255, 0.78);
  --text: #5e4a57;
  --title: #7eb6df;
  --accent: #dced9c;
  --accent-strong: #b8d77f;
  --line: #d7ecfa;
  --line-soft: #eef8ff;
  --nav-bg: #bfe3fb;
  --nav-shadow: 0 12px 35px rgba(126, 182, 223, 0.22);
  --shadow: 0 12px 35px rgba(126, 182, 223, 0.16);
  --radius: 24px;
}

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

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, #f3fbff 0%, transparent 25%),
    radial-gradient(circle at bottom right, #f8ffdf 0%, transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.blob {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: -1;
  animation: floatBlob 9s ease-in-out infinite;
  filter: blur(18px);
}

.blob.one {
  top: 40px;
  left: -60px;
  background: radial-gradient(circle, rgba(191, 227, 251, 0.45), rgba(191, 227, 251, 0));
}

.blob.two {
  bottom: 60px;
  right: -70px;
  animation-delay: 1.5s;
  background: radial-gradient(circle, rgba(220, 237, 156, 0.35), rgba(220, 237, 156, 0));
}

@keyframes floatBlob {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-18px) translateX(12px) scale(1.06);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 0 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.66));
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-pill {
  justify-content: center;
  gap: 26px;
  padding: 14px 22px;
  background: rgba(191, 227, 251, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--nav-shadow);
  border-radius: 999px;
}

.logo-center {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-center:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 28px rgba(126, 182, 223, 0.28), inset 0 0 0 1px rgba(255,255,255,0.75);
}

.logo-center img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.menu a {
  font-size: 0.98rem;
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  position: relative;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.menu a:hover,
.menu a.active {
  color: #6e7f42;
  background: linear-gradient(135deg, #eef7bf 0%, #dced9c 100%);
  box-shadow: 0 10px 22px rgba(184, 215, 127, 0.42);
  transform: translateY(-2px) scale(1.02);
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 70px 0 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.05;
  color: var(--title);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, letter-spacing 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  letter-spacing: 0.2px;
  box-shadow: 0 14px 30px rgba(126, 182, 223, 0.24);
}

.btn-primary {
  background: linear-gradient(135deg, #9fd2f4 0%, #7eb6df 100%);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--title);
  border: 1px solid var(--line);
}

.hero-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(220, 237, 156, 0.55), transparent 70%);
  border-radius: 50%;
}

.profile {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff9ff, #ffffff);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
}

.stat h3 {
  color: var(--title);
  margin-bottom: 6px;
  font-size: 1.35rem;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
  color: var(--title);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 42px;
  line-height: 1.75;
}

.about-grid,
.services,
.projects,
.contact-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
}

.card h3 {
  color: var(--title);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.card p {
  line-height: 1.8;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

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

.service-card,
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 36px rgba(126, 182, 223, 0.2);
  border-color: rgba(126, 182, 223, 0.22);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eff8ff, #ffffff);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #9fd2f4 0%, #7eb6df 100%);
  color: white;
  border-color: #7eb6df;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(126, 182, 223, 0.24);
}

.projects {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-thumb {
  height: 210px;
  background: linear-gradient(135deg, #eff8ff, #fffef5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 22px;
}

.project-category {
  display: inline-block;
  font-size: 0.84rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.form-alert {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  padding-left: 4px;
}

.alertaRoja {
  color: #b42318;
}

.alertaVerde {
  color: #157347;
}

button:disabled {
  opacity: 0.75;
  cursor: wait;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 0.96rem;
  outline: none;
  color: var(--text);
}

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

input:focus,
textarea:focus {
  border-color: var(--title);
  box-shadow: 0 0 0 4px rgba(126, 182, 223, 0.14);
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-btn {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  border: 1px solid var(--line);
  background: white;
  color: #5e4a57;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 24px rgba(126, 182, 223, 0.18);
}

.instagram:hover {
  background: #9fd2f4;
  color: white;
}

.whatsapp:hover {
  background: #dced9c;
  color: #5f7430;
}

.correo:hover {
  background: #bfe3fb;
  color: #fff;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

footer {
  text-align: center;
  padding: 30px 0 50px;
  color: #7c92a6;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .services,
  .projects,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-pill {
    border-radius: 34px;
    padding: 18px;
    gap: 18px;
    flex-direction: column;
  }

  .menu {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  header {
    padding-top: 14px;
  }

  .nav-pill {
    gap: 12px;
    padding: 16px 12px;
  }

  .menu {
    gap: 8px;
  }

  .menu a {
    font-size: 0.92rem;
    padding: 10px 14px;
  }

  .logo-center {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .logo-center img {
    width: 48px;
    height: 48px;
  }

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

  .hero-card,
  .card {
    padding: 22px;
  }
}


/* --- Pink Theme Override --- */
body{
  background:#fff0f6;
}

header, .navbar{
  background:#f8c8dc !important;
  border-radius:40px;
}

.navbar a:hover{
  background:#ff69b4 !important;
  color:white !important;
  transform:scale(1.1);
  box-shadow:0 6px 20px rgba(255,105,180,0.4);
}

/* center ilustracion & social */
.servicios .extra{
  display:flex;
  justify-content:center;
  gap:20px;
}


/* ===== Ajustes finales rosa ===== */

/* quitar fondo rosado fuerte */
body{
  background:#fff !important;
}

/* menú rosado fuerte */
header, .navbar, .nav{
  background:#ffb6c1 !important;
}

/* texto más rosado oscuro */
.nav a, nav a{
  color:#c2185b !important;
  font-weight:500;
}

/* hover más marcado */
.nav a:hover, nav a:hover{
  background:#c2185b !important;
  color:white !important;
}

/* asegurar logo izquierda */
.logo{
  margin-right:auto;
}



/* ===== Ajustes pedidos ===== */
:root{
  --title: #d06a92;
  --nav-bg: #ef9fbc;
  --nav-dark: #ef9fbc;
  --nav-text: #9c4f73;
  --baby-pink: #f7c7da;
  --bone: #f7f1e8;
  --line: #f2d8e2;
  --line-soft: #f8e8ef;
  --shadow: 0 12px 35px rgba(208, 106, 146, 0.14);
  --nav-shadow: 0 12px 35px rgba(208, 106, 146, 0.18);
}

/* fondo limpio fuera del menú */
body{
  background:
    radial-gradient(circle at top left, #fff8fb 0%, transparent 25%),
    radial-gradient(circle at bottom right, #fff7fb 0%, transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%) !important;
}

.blob.one,
.blob.two{
  opacity: 0.22;
}

header{
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 20px 0 12px !important;
}

.nav{
  display:flex;
  align-items:center;
}

.nav-pill{
  justify-content: space-between !important;
  gap: 18px;
  padding: 14px 22px;
  background: var(--nav-dark) !important;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--nav-shadow);
  border-radius: 999px;
}

.logo-left{
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background: rgba(255,255,255,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo-left:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(208, 106, 146, 0.22);
}

.logo-left img{
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.menu-right{
  margin-left: auto;
  justify-content: flex-end;
  flex: 1;
}

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

.menu a{
  color: var(--nav-text) !important;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

/* seleccionado en blanco hueso */
.menu a.active{
  background: var(--bone) !important;
  color: var(--nav-text) !important;
  box-shadow: 0 8px 18px rgba(255,255,255,0.28);
}

/* hover menú en rosa bebé */
.menu a:hover{
  background: var(--baby-pink) !important;
  color: var(--nav-text) !important;
  box-shadow: 0 10px 22px rgba(247, 199, 218, 0.4) !important;
  transform: translateY(-2px) scale(1.02);
}

/* todos los textos celestes a rosa */
.hero h1,
.section-title,
.card h3,
.stat h3,
.project-info h3,
.social-card h3,
.filter-btn.active,
.filter-btn:hover,
.btn-secondary{
  color: var(--title) !important;
}

.btn-primary{
  background: var(--baby-pink) !important;
  color: #8f4f6b !important;
  box-shadow: 0 10px 22px rgba(247, 199, 218, 0.32);
}

.btn-primary:hover,
.btn-secondary:hover,
.social-btn:hover,
.filter-btn:hover{
  background: #f8d7e4 !important;
  color: #8f4f6b !important;
  box-shadow: 0 12px 24px rgba(247, 199, 218, 0.38) !important;
}

.btn-secondary{
  border: 1px solid var(--line);
}

/* botón enviar mensaje mismo rosa bebé */
#contactForm .btn-primary{
  width: 100%;
  justify-content: center;
  background: var(--baby-pink) !important;
  color: #8f4f6b !important;
}

/* servicios: centrar ilustración y social media */
.services{
  grid-template-columns: repeat(6, 1fr) !important;
  align-items: stretch;
}

.services .service-card{
  grid-column: span 2;
}

.services .service-card:nth-child(4){
  grid-column: 2 / span 2;
}

.services .service-card:nth-child(5){
  grid-column: 4 / span 2;
}

/* iconos y detalles con rosa suave */
.service-icon{
  background: linear-gradient(135deg, #fff5f9, #ffffff) !important;
}

.tag,
.filter-btn{
  border-color: var(--line) !important;
}

@media (max-width: 900px){
  .nav-pill{
    border-radius: 34px;
    padding: 16px;
  }

  .logo-left{
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    margin-bottom: 6px;
  }

  .menu-right{
    justify-content: center;
    width: 100%;
  }

  .logo-left img{
    width: 70px;
    height: 70px;
  }

  .services{
    grid-template-columns: 1fr 1fr !important;
  }

  .services .service-card,
  .services .service-card:nth-child(4),
  .services .service-card:nth-child(5){
    grid-column: auto !important;
  }
}

@media (max-width: 640px){
  .services{
    grid-template-columns: 1fr !important;
  }

  .nav-pill{
    flex-direction: column;
    align-items: center;
  }

  .menu-right{
    margin-left: 0;
  }
}


/* ===== Fondo degradado rosa ===== */
body{
  background: linear-gradient(135deg, #fff0f6 0%, #ffd6e7 50%, #ffc1dc 100%) !important;
}


/* ===== Degradado rosa más claro ===== */
body{
  background:
    linear-gradient(135deg, #fffdff 0%, #fff6fa 35%, #ffeef5 68%, #ffe7f1 100%) !important;
}


/* ===== Fix scroll header overlap ===== */
section{
  scroll-margin-top: 120px;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


.project-thumb img {
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.project-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(28, 23, 31, 0.86);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox.closing .lightbox-img {
  transform: scale(0.94);
  opacity: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease;
}

.lightbox-close:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .lightbox-img {
    max-width: 94vw;
    max-height: 80vh;
    border-radius: 18px;
  }
}


/* ==== Ajuste de menú más pequeño ==== */
header{padding:10px 0 6px !important;}
.nav-pill{gap:12px !important;padding:10px 16px !important;}
.logo-left{width:80px !important;height:80px !important;flex:0 0 80px !important;}
.logo-left img{width:60px !important;height:60px !important;}
.menu{gap:8px !important;}
.menu a{padding:8px 14px !important;font-size:.9rem !important;}

/* ==== Carrusel en proyectos ==== */
.project-thumb{position:relative;}
.project-prev,.project-next,.lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border:none;border-radius:999px;background:rgba(255,255,255,.82);color:#9c4f73;font-size:1.35rem;line-height:1;cursor:pointer;display:grid;place-items:center;box-shadow:0 10px 20px rgba(0,0,0,.12);transition:transform .25s ease, background .25s ease, opacity .25s ease;z-index:2;}
.project-prev:hover,.project-next:hover,.lightbox-nav:hover{transform:translateY(-50%) scale(1.06);background:#fff;}
.project-prev{left:10px;}
.project-next{right:10px;}
.lightbox-prev{left:24px;}
.lightbox-next{right:24px;}
@media (max-width:768px){.project-prev,.project-next,.lightbox-nav{width:38px;height:38px;font-size:1.1rem}.lightbox-prev{left:12px}.lightbox-next{right:12px}}


/* ===== SOBRE MI FOTO + FLORES ===== */
.about-intro{
  display:grid;
  grid-template-columns: 320px 1fr;
  align-items:center;
  gap:40px;
  margin-bottom:28px;
}

.about-intro .section-subtitle{
  margin:0;
  text-align:left;
}

.about-photo-column{
  position:relative;
  width:280px;
  height:280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-photo-frame{
  position:relative;
  z-index:2;
  width:235px;
  height:235px;
  border-radius:50%;
  padding:10px;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,240,247,0.95));
  box-shadow:0 16px 40px rgba(214,129,170,0.18);
}

.about-photo-placeholder{
  width:100%;
  height:100%;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  border:2px dashed rgba(214,129,170,0.35);
}

.about-photo-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-photo-orbit{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.orbit-1{
  width:270px;
  height:270px;
  border:2px solid rgba(233,154,188,0.35);
  animation:spinOrbit 14s linear infinite;
}

.orbit-2{
  width:310px;
  height:310px;
  border:1px dashed rgba(233,154,188,0.45);
  animation:spinOrbitReverse 18s linear infinite;
}

.about-flower{
  position:absolute;
  width:46px;
  height:46px;
  opacity:.9;
  animation:flowerFloat 4.5s ease-in-out infinite;
}

.about-flower::before,
.about-flower::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
}

.about-flower::before{
  width:18px;
  height:18px;
  background:rgba(255,200,220,0.5);
  border:2px solid rgba(233,154,188,0.9);
  left:14px;
  top:14px;
  z-index:2;
}

.about-flower::after{
  background:
    radial-gradient(circle at 50% 8px, transparent 11px, rgba(233,154,188,0.95) 11px, rgba(233,154,188,0.95) 13px, transparent 13px),
    radial-gradient(circle at 50% calc(100% - 8px), transparent 11px, rgba(233,154,188,0.95) 11px, rgba(233,154,188,0.95) 13px, transparent 13px),
    radial-gradient(circle at 8px 50%, transparent 11px, rgba(233,154,188,0.95) 11px, rgba(233,154,188,0.95) 13px, transparent 13px),
    radial-gradient(circle at calc(100% - 8px) 50%, transparent 11px, rgba(233,154,188,0.95) 11px, rgba(233,154,188,0.95) 13px, transparent 13px);
  filter:drop-shadow(0 3px 6px rgba(233,154,188,0.18));
}

.flower-1{ top:-6px; left:88px; animation-delay:0s; }
.flower-2{ right:0; top:48px; animation-delay:.6s; }
.flower-3{ right:18px; bottom:44px; animation-delay:1.2s; }
.flower-4{ left:8px; bottom:32px; animation-delay:1.8s; }
.flower-5{ left:-6px; top:70px; animation-delay:2.2s; }

@keyframes flowerFloat{
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-10px) scale(1.05); }
}

@keyframes spinOrbit{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes spinOrbitReverse{
  from{ transform:rotate(360deg); }
  to{ transform:rotate(0deg); }
}

@media (max-width: 920px){
  .about-intro{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-intro .section-subtitle{
    text-align:center;
  }
}


/* ===== MOBILE HEADER REAL FIX ===== */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:#fffafc;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  margin-left:auto;
  flex-shrink:0;
  z-index:60;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2.5px;
  border-radius:999px;
  background:#9c4f73;
  transition:transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle.is-active span:nth-child(2){opacity:0;}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width: 768px){
  header{
    padding:12px 0 10px !important;
  }

  header .container{
    width:min(92%, 1100px) !important;
  }

  .nav.nav-pill{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    padding:10px 14px !important;
    border-radius:26px !important;
    min-height:unset !important;
  }

  .logo-left{
    width:64px !important;
    height:64px !important;
    flex:0 0 64px !important;
    margin-right:0 !important;
    margin-bottom:0 !important;
  }

  .logo-left img{
    width:46px !important;
    height:46px !important;
  }

  .menu-toggle{
    display:inline-flex !important;
  }

  .menu-right{
    margin-left:0 !important;
    justify-content:flex-start !important;
    width:auto !important;
    flex:unset !important;
  }

  .menu.menu-right{
    position:absolute !important;
    top:calc(100% + 10px) !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    display:none !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    gap:8px !important;
    padding:14px !important;
    margin:0 !important;
    background:#f7c7da !important;
    border-radius:22px !important;
    box-shadow:0 18px 40px rgba(0,0,0,0.10) !important;
    z-index:55 !important;
  }

  .menu.menu-right.is-open{
    display:flex !important;
  }

  .menu.menu-right a{
    width:100% !important;
    text-align:center !important;
    padding:12px 14px !important;
  }

  .hero{
    padding-top:26px !important;
  }

  .pill{
    width:100% !important;
  }

  .hero h1{
    font-size:clamp(2rem, 10vw, 3.2rem) !important;
    line-height:1.02 !important;
  }

  .hero p{
    font-size:1rem !important;
    line-height:1.55 !important;
  }

  .buttons{
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .btn{
    width:100% !important;
    justify-content:center !important;
  }
}
