/* ============================================================
   ESTUDIO JF — Hoja de estilos global
   Paleta: rosa pastel + beige | Tipografía: Cormorant Garamond + Nunito
   ============================================================ */

:root {
  --rose:      #f2a7bb;
  --rose-deep: #c62e59;
  --rose-deep-soft: #e07a97;
  --blush:     #fde8ef;
  --blush2:    #faf0f4;
  --beige:     #f5ece3;
  --beige2:    #ede0d4;
  --sand:      #c9b49a;
  --navy:      #1e2a3a;
  --text:      #3d2b35;
  --text-light:#7a6070;
  --white:     #fffbfd;
  --gold:      #c9a96e;
  --success:   #25d366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* Skip link — accesibilidad */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--rose-deep); color: #fff;
  padding: .8rem 1.4rem; border-radius: 0 0 10px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ─── NAV ─── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
  background: rgba(255,251,253,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242,167,187,.25);
  transition: box-shadow .3s;
}
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(224,122,151,.12); }

.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-logo img {
  height: 42px; width: 42px; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(224,122,151,.25));
  transition: transform .3s;
}
.nav-logo:hover img { transform: rotate(-4deg) scale(1.08); }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--navy);
  letter-spacing: .04em; line-height: 1;
}
.nav-logo-text span { color: var(--rose-deep); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .86rem; font-weight: 600;
  color: var(--text-light); letter-spacing: .05em; text-transform: uppercase;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--rose); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-deep); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-links .has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 140%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid rgba(242,167,187,.3); border-radius: 16px;
  padding: .6rem; min-width: 260px; box-shadow: 0 16px 40px rgba(224,122,151,.18);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block; padding: .6rem .9rem; border-radius: 10px;
  text-transform: none; font-size: .85rem; letter-spacing: 0; font-weight: 600; color: var(--text);
}
.dropdown a:hover { background: var(--blush); color: var(--rose-deep); }
.dropdown a::after { display: none; }

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff !important; padding: .55rem 1.3rem; border-radius: 50px;
  font-size: .82rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: .08em;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 14px rgba(224,122,151,.35);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(224,122,151,.45) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--rose-deep); border-radius: 2px; transition: .3s; }

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: 6.5rem 2.5rem 0; font-size: .82rem; color: var(--text-light);
}
.breadcrumbs a { color: var(--rose-deep); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 .4rem; }

/* ─── HERO ─── */
#hero {
  min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 7rem 2.5rem 4rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(242,167,187,.28) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,180,154,.22) 0%, transparent 55%),
    var(--white);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(242,167,187,.18) 0%, transparent 70%);
  pointer-events: none;
}

.petal { position: absolute; border-radius: 50% 0 50% 0; opacity: .13; animation: float 8s ease-in-out infinite; pointer-events: none; }
.petal:nth-child(1){ width:80px;height:80px;background:var(--rose);top:15%;left:5%;animation-delay:0s;}
.petal:nth-child(2){ width:50px;height:50px;background:var(--gold);top:70%;left:15%;animation-delay:2s;}
.petal:nth-child(3){ width:65px;height:65px;background:var(--rose-deep);top:30%;right:8%;animation-delay:4s;}
.petal:nth-child(4){ width:40px;height:40px;background:var(--sand);bottom:20%;right:20%;animation-delay:1s;}

@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-20px) rotate(10deg);} }

.hero-text { position: relative; z-index: 2; animation: fadeUp .9s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--blush); color: var(--rose-deep);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; border: 1px solid rgba(242,167,187,.5); margin-bottom: 1.4rem;
}
.hero-badge::before { content: '✦'; font-size: .7rem; }

.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 1.2rem;
}
.hero-title em { color: var(--rose-deep); font-style: italic; font-weight: 600; }
.hero-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; max-width: 500px; margin-bottom: 2.2rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; border: none; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff;
  box-shadow: 0 6px 20px rgba(224,122,151,.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(224,122,151,.45); }
.btn-secondary { background: transparent; color: var(--rose-deep); border: 2px solid var(--rose); }
.btn-secondary:hover { background: var(--blush); transform: translateY(-2px); }

.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; animation: fadeUp .9s .2s ease both; }
.hero-card-wrap { position: relative; width: 380px; max-width: 100%; }
.hero-main-card {
  background: linear-gradient(145deg, var(--blush), #fff); border: 1px solid rgba(242,167,187,.4);
  border-radius: 28px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(224,122,151,.18), 0 4px 16px rgba(0,0,0,.06);
  text-align: center;
}
.hero-card-icon img { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 1rem; filter: drop-shadow(0 4px 12px rgba(224,122,151,.3)); }
.hero-card-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.hero-card-name span { color: var(--rose-deep); font-style: italic; }
.hero-card-tagline { font-size: .85rem; color: var(--text-light); margin-bottom: 1.6rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { background: #fff; border-radius: 16px; padding: 1rem .8rem; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--rose-deep); }
.stat-label { font-size: .75rem; color: var(--text-light); margin-top: .2rem; }

.float-tag {
  position: absolute; background: #fff; border: 1px solid rgba(242,167,187,.4); border-radius: 14px;
  padding: .6rem 1rem; font-size: .78rem; font-weight: 700; color: var(--rose-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,.08); display: flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.float-tag.t1 { top: -20px; right: -20px; animation: float 7s ease-in-out infinite; }
.float-tag.t2 { bottom: 10px; left: -30px; animation: float 6s ease-in-out infinite reverse; }

/* ─── SIMPLE PAGE HERO (para landing pages internas) ─── */
.page-hero {
  padding: 2rem 2.5rem 4rem; max-width: 1000px; margin: 0 auto; text-align: center;
}
.page-hero .hero-badge { margin-inline: auto; }
.page-hero .hero-sub { margin-inline: auto; }

/* ─── SECTION COMMONS ─── */
section { padding: 6rem 2.5rem; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose-deep); background: var(--blush); padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.section-title em { font-style: italic; font-weight: 600; color: var(--rose-deep); }
.section-sub { color: var(--text-light); font-size: 1rem; line-height: 1.8; max-width: 560px; }
.section-header { margin-bottom: 3.5rem; }
.center { text-align: center; margin-inline: auto; }

/* ─── SERVICES GRID (home) ─── */
#servicios { background: var(--beige); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; max-width: 1200px; margin: 0 auto; }
.service-card {
  background: var(--white); border: 1px solid rgba(242,167,187,.3); border-radius: 24px; padding: 2rem;
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep)); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(224,122,151,.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: .8rem; }
.service-desc { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service-list li { font-size: .85rem; color: var(--text); padding-left: 1.2rem; position: relative; }
.service-list li::before { content: '✦'; position: absolute; left: 0; color: var(--rose); font-size: .6rem; top: .2rem; }
.service-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .85rem; font-weight: 700; color: var(--rose-deep); }

/* ─── ABOUT ─── */
#nosotras-preview, .about-block {
  display: grid; grid-template-columns: 420px 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; padding: 6rem 2.5rem;
}
.about-visual { position: relative; width: 100%; }
.about-bg-shape { position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; background: linear-gradient(135deg, var(--blush), var(--beige2)); border-radius: 40px 20px 40px 20px; z-index: 0; }
.about-photo-placeholder {
  position: relative; z-index: 1; background: linear-gradient(160deg, var(--blush) 0%, var(--beige2) 100%);
  border-radius: 30px 12px 30px 12px; height: 520px; width: 100%; display: block; box-shadow: 0 20px 60px rgba(224,122,151,.22); overflow: hidden;
}
.about-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .5s ease; }
.about-photo-placeholder:hover img { transform: scale(1.03); }
.about-chip {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px; padding: .8rem 1.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.1); font-size: .82rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: .5rem;
}
.about-chip.c1 { top: 20px; right: -20px; }
.about-chip.c2 { bottom: 40px; left: -24px; }
.chip-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.val { background: var(--blush); border-radius: 16px; padding: 1rem 1.2rem; border: 1px solid rgba(242,167,187,.3); }
.val-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.val-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.val-desc { font-size: .78rem; color: var(--text-light); margin-top: .2rem; }

/* ─── PROCESS ─── */
#proceso { background: linear-gradient(160deg, var(--blush2), var(--beige)); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem; align-items: start; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: #fff; box-shadow: 0 8px 24px rgba(224,122,151,.35); flex-shrink: 0;
}
.step-body { padding-top: .6rem; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.step-desc { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ─── FAQ ─── */
#faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(242,167,187,.3); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy);
}
.faq-icon { color: var(--rose-deep); font-size: 1.3rem; transition: transform .3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding-bottom: 1.3rem; color: var(--text-light); font-size: .92rem; line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
#testimonios { background: var(--beige); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: #fff; border-radius: 22px; padding: 1.8rem; box-shadow: 0 8px 30px rgba(0,0,0,.05); }
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .85rem;
}
.testimonial-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .75rem; color: var(--text-light); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep)); border-radius: 28px; padding: 3rem 2.5rem;
  max-width: 1000px; margin: 0 auto; text-align: center; color: #fff;
}
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: .8rem; }
.cta-banner h2 em { font-style: italic; font-weight: 600; }
.cta-banner p { opacity: .92; margin-bottom: 1.6rem; max-width: 500px; margin-inline: auto; }
.cta-banner .btn-primary { background: #fff; color: var(--rose-deep); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.cta-banner .btn-primary:hover { color: var(--rose-deep); }

/* ─── CONTACT ─── */
#contacto { background: var(--navy); text-align: center; padding: 6rem 2.5rem; }
#contacto .section-label { background: rgba(242,167,187,.15); color: var(--rose); }
#contacto .section-title { color: #fff; margin-bottom: 1rem; }
#contacto .section-sub { color: rgba(255,255,255,.6); margin: 0 auto 3rem; }
.contact-cards { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto 3rem; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(242,167,187,.2); border-radius: 20px; padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem; text-decoration: none; color: #fff; transition: transform .25s, background .25s; min-width: 220px;
}
.contact-card:hover { transform: translateY(-4px); background: rgba(242,167,187,.12); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); flex-shrink: 0;
}
.contact-card-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rose); margin-bottom: .2rem; }
.contact-card-val { font-size: .92rem; font-weight: 600; }

.contact-form-wrap { max-width: 560px; margin: 0 auto; background: rgba(255,255,255,.05); border: 1px solid rgba(242,167,187,.15); border-radius: 28px; padding: 2.5rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,.07); border: 1px solid rgba(242,167,187,.2); border-radius: 12px; padding: .85rem 1.1rem;
  color: #fff; font-family: 'Nunito', sans-serif; font-size: .9rem; outline: none; transition: border-color .25s, background .25s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); background: rgba(242,167,187,.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy); color: #fff; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.btn-submit {
  width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); border: none; border-radius: 14px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 20px rgba(224,122,151,.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(224,122,151,.5); }
.form-note { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .8rem; text-align: center; }

/* ─── FOOTER ─── */
footer { background: #111820; color: rgba(255,255,255,.55); padding: 3.5rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img { height: 36px; width: 36px; object-fit: contain; }
.footer-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #fff; }
.footer-brand-text span { color: var(--rose); font-style: italic; }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .78rem; }
.footer-bottom span { color: var(--rose); }
.footer-social { display: flex; gap: .8rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; }
.footer-social a:hover { background: var(--rose-deep); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 28px rgba(37,211,102,.4);
  text-decoration: none; animation: pulse 2.5s ease infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,.4);} 50%{box-shadow:0 8px 40px rgba(37,211,102,.65);} }

/* ─── BREADCRUMB SCHEMA VISUAL / GENERIC CONTENT BLOCKS ─── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); margin: 2rem 0 1rem; }
.content-block p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.content-block ul { margin: 1rem 0 1rem 1.2rem; color: var(--text-light); line-height: 1.9; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.benefit-card { text-align: center; padding: 1.6rem; }
.benefit-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.benefit-title { font-weight: 700; color: var(--navy); margin-bottom: .4rem; font-size: .95rem; }
.benefit-desc { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ─── PORTAFOLIO / CASOS DE ÉXITO ─── */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; max-width: 1100px; margin: 0 auto; }
.case-card {
  background: var(--white); border: 1px solid rgba(242,167,187,.3); border-radius: 22px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(224,122,151,.18); }
.case-card-img { height: 220px; overflow: hidden; background: var(--beige); }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.case-card-body { padding: 1.5rem; }
.case-card-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rose-deep); margin-bottom: .6rem; display: block; }
.case-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.case-card-excerpt { font-size: .87rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.case-card-link { font-size: .85rem; font-weight: 700; color: var(--rose-deep); }

.case-coming-soon {
  background: var(--blush); border: 2px dashed rgba(224,122,151,.35); border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 1.5rem; text-align: center; min-height: 320px;
}
.case-coming-soon-icon { font-size: 2rem; margin-bottom: .8rem; opacity: .6; }
.case-coming-soon p { color: var(--text-light); font-size: .88rem; font-weight: 600; }

/* Página de detalle de caso */
.case-hero { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: 2rem; }
.case-meta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem; }
.case-meta-chip { background: var(--blush); color: var(--rose-deep); font-size: .78rem; font-weight: 700; padding: .4rem 1rem; border-radius: 50px; }
.case-screenshot-wrap { max-width: 560px; margin: 0 auto 3rem; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(224,122,151,.2); border: 8px solid #fff; }
.case-screenshot-wrap img { width: 100%; display: block; }
.case-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto 3rem; }
.case-detail-item { text-align: center; padding: 1.2rem; }
.case-detail-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--rose-deep); }
.case-detail-label { font-size: .8rem; color: var(--text-light); margin-top: .3rem; }


.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; max-width: 1100px; margin: 0 auto; }
.blog-card {
  background: var(--white); border: 1px solid rgba(242,167,187,.3); border-radius: 22px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(224,122,151,.18); }
.blog-card-img {
  height: 170px; background: linear-gradient(135deg, var(--blush), var(--beige2));
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rose-deep); margin-bottom: .6rem; display: block; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: .6rem; line-height: 1.3; }
.blog-card-excerpt { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.blog-card-meta { font-size: .75rem; color: var(--text-light); margin-top: 1rem; opacity: .8; }

.article-header { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: 2rem; }
.article-meta { font-size: .82rem; color: var(--text-light); margin-top: 1rem; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--navy); margin: 2.2rem 0 1rem; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 1.6rem 0 .8rem; }
.article-body p { color: var(--text); line-height: 1.85; margin-bottom: 1.1rem; font-size: .98rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.2rem 1.3rem; color: var(--text); line-height: 1.9; }
.article-body li { margin-bottom: .4rem; }
.article-body strong { color: var(--navy); }
.article-cta-box {
  background: var(--blush); border-radius: 20px; padding: 1.8rem; text-align: center; margin: 2.5rem 0;
}
.article-cta-box p { margin-bottom: 1rem; font-weight: 600; color: var(--navy); }


@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── VISUALLY HIDDEN (accesibilidad) ─── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-btns { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .hero-card-wrap { width: 300px; }
  #nosotras-preview, .about-block { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .about-visual { order: -1; }
  .about-photo-placeholder { height: 380px; }
  .float-tag.t2 { left: -10px; }
  #main-nav { padding: .9rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: fixed; top: 62px; left: 0; right: 0; background: rgba(255,251,253,.98); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(242,167,187,.2); max-height: calc(100vh - 62px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .dropdown { display: block; position: static; transform: none; box-shadow: none; border: none; padding-left: 1rem; min-width: 0; margin-top: .5rem; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}