/* ============================================
   CLAUTARTAS — design tokens
   Paleta: pastel dulce (rosados, cremas, berry, caramelo)
   ============================================ */
:root {
  --cream:        #FBF2E9;
  --cream-soft:   #FDF8F3;
  --pink-frost:   #F3B8C4;
  --pink-soft:    #FBE1E6;
  --berry:        #B23A5C;
  --berry-dark:   #8C2C47;
  --cocoa:        #4A2E28;
  --cocoa-soft:   #7A5A50;
  --caramel:      #D9A441;
  --white:        #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Nunito", -apple-system, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 24px rgba(74, 46, 40, 0.10);
  --shadow-lift: 0 14px 34px rgba(178, 58, 92, 0.18);
  --nav-height: 60px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--cocoa);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* space for floating whatsapp button */
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cocoa);
  margin: 0 0 .4em;
  line-height: 1.15;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { padding-left: 1.2em; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ============================================
   SIGNATURE MOTIF — scalloped edge (pie-crust crimp)
   ============================================ */
.scallop-bottom {
  -webkit-mask-image: radial-gradient(circle at 12px 0, transparent 12px, black 12.5px);
  mask-image: radial-gradient(circle at 12px 0, transparent 12px, black 12.5px);
  -webkit-mask-size: 24px 24px;
  mask-size: 24px 24px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: bottom;
  mask-position: bottom;
}
.scallop-divider {
  width: 100%;
  height: 22px;
  background: var(--pink-frost);
  -webkit-mask-image: radial-gradient(circle at 12px 22px, transparent 12px, black 12.5px);
  mask-image: radial-gradient(circle at 12px 22px, transparent 12px, black 12.5px);
  -webkit-mask-size: 24px 24px;
  mask-size: 24px 24px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--cream-soft);
  padding: 14px 0 0;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-svg { width: 54px; height: 54px; }
.logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--berry);
  white-space: nowrap;
}

.social-banner {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.social-banner a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--berry);
  transition: transform .15s ease, background .15s ease;
}
.social-banner a:hover { background: var(--pink-frost); transform: translateY(-2px); }
.social-banner svg { width: 19px; height: 19px; }

/* ============================================
   NAV — floating menu
   ============================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 14px 0;
  background: linear-gradient(to bottom, var(--cream-soft) 60%, transparent);
}
.nav-bar {
  max-width: 640px;
  margin: 0 auto;
  background: var(--berry);
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 6px 20px;
}
.nav-links {
  display: none;
  gap: 4px;
}
.nav-links a {
  color: var(--cream);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--caramel);
  color: var(--cocoa);
}
.nav-brand-mini { color: var(--cream); font-weight: 800; font-family: var(--font-display); font-style: italic; }
.nav-toggle {
  background: var(--caramel);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--cocoa); }

.nav-mobile-panel {
  max-width: 640px;
  margin: 6px auto 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.nav-mobile-panel.open { max-height: 320px; }
.nav-mobile-panel a {
  display: block;
  padding: 14px 22px;
  font-weight: 700;
  color: var(--cocoa);
  border-bottom: 1px solid var(--pink-soft);
}
.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a.active { color: var(--berry); background: var(--pink-soft); }

.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-search-toggle {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream);
  transition: background .15s ease;
}
.nav-search-toggle:hover { background: rgba(255,255,255,0.14); }
.nav-search-toggle svg { width: 19px; height: 19px; }
.nav-search-toggle[aria-expanded="true"] { background: var(--caramel); color: var(--cocoa); }

.nav-search-panel {
  max-width: 640px;
  margin: 8px auto 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.nav-search-panel.open { max-height: 420px; overflow-y: auto; }
.nav-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--pink-soft);
}
.nav-search-box svg { width: 18px; height: 18px; color: var(--berry); flex-shrink: 0; }
.nav-search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--cocoa);
  width: 100%;
}
.nav-search-results { padding: 6px; }
.nav-search-hint { color: var(--cocoa-soft); font-size: .85rem; padding: 12px 10px; margin: 0; }
.nav-search-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
}
.nav-search-item:hover { background: var(--pink-soft); }
.nav-search-tag {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--berry);
}
.nav-search-titulo { font-weight: 700; font-size: .92rem; color: var(--cocoa); }
.nav-search-sub { font-size: .78rem; color: var(--cocoa-soft); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile-panel { display: none; }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: relative;
  margin: 22px auto 0;
  max-width: 1080px;
  padding: 0 18px;
}
.carousel-track {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/10;
  background: var(--pink-soft);
}
@media (min-width: 720px) { .carousel-track { aspect-ratio: 21/9; } }

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px 24px;
  background: linear-gradient(to top, rgba(74,46,40,.78), transparent);
  color: var(--cream);
}
.carousel-caption .ribbon {
  display: inline-block;
  background: var(--berry);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.carousel-caption h2 { color: var(--white); font-size: 1.4rem; margin-bottom: .15em; }
.carousel-caption p { margin: 0; font-size: .9rem; opacity: .92; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--pink-frost);
  padding: 0;
}
.carousel-dots button.active { background: var(--berry); width: 22px; border-radius: 999px; }

/* ============================================
   SECTIONS / TITLES
   ============================================ */
.section { padding: 44px 0 8px; }
.section-title { text-align: center; margin-bottom: 6px; font-size: 1.7rem; }
.section-subtitle {
  text-align: center;
  color: var(--cocoa-soft);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: .96rem;
}

/* ============================================
   COURSE MODULES
   ============================================ */
.course-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 860px) {
  .course-list { grid-template-columns: 1fr 1fr; }
}

.course-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 560px) {
  .course-card { grid-template-columns: 1.1fr 1fr; }
}

.course-media {
  position: relative;
  display: block;
}
.course-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
@media (min-width: 560px) { .course-media img { height: 100%; min-height: 220px; } }
.course-media .badge-new {
  position: absolute; top: 10px; left: 10px;
  background: var(--caramel);
  color: var(--cocoa);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.course-media .play-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,46,40,0.12);
  opacity: 0;
  transition: opacity .15s ease;
}
.course-media:hover .play-badge { opacity: 1; }
.play-badge span {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.play-badge svg { width: 18px; height: 18px; color: var(--berry); margin-left: 2px; }

.course-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}
.course-tag {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 4px;
}
.course-body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.course-body .course-desc {
  font-size: .87rem;
  color: var(--cocoa-soft);
  margin-bottom: 12px;
  flex-grow: 1;
}
.course-body .course-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.course-body .course-price .clp { font-family: var(--font-display); font-size: 1.2rem; color: var(--berry); font-weight: 700; }
.course-body .course-price .usd { font-size: .8rem; color: var(--cocoa-soft); font-weight: 700; }

.course-resources {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.resources-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cocoa);
  margin-bottom: 2px;
}
.resource-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cocoa-soft);
  font-size: .78rem;
  font-weight: 700;
}
.resource-info svg { width: 13px; height: 13px; color: var(--berry); flex-shrink: 0; }

.course-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--berry);
  color: var(--cream);
  font-weight: 800;
  font-size: .88rem;
  padding: 11px 18px;
  border-radius: 999px;
  align-self: flex-start;
  transition: background .15s ease, transform .15s ease;
}
.course-cta:hover { background: var(--berry-dark); transform: translateY(-1px); }
.course-cta svg { width: 14px; height: 14px; }

/* ============================================
   GENERIC BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: .92rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
}
.btn-primary { background: var(--berry); color: var(--cream); }
.btn-primary:hover { background: var(--berry-dark); }
.btn-outline { background: transparent; color: var(--berry); border: 2px solid var(--berry); }
.btn-outline:hover { background: var(--pink-soft); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1DA851; }

/* ============================================
   HERO (interior pages)
   ============================================ */
.page-hero {
  padding: 34px 0 18px;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  color: var(--berry);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--pink-soft);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 10px; }
.page-hero p { color: var(--cocoa-soft); max-width: 560px; margin: 0 auto; }

/* ============================================
   TESTIMONIALS (resultados.html)
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.testi-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  height: 200px;
  object-fit: cover;
}
.testi-video {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.testi-video blockquote.tiktok-embed { margin: 0 !important; }
.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cocoa);
  font-size: 1rem;
  margin-bottom: 10px;
}
.testi-author { font-weight: 800; font-size: .85rem; color: var(--berry); }
.testi-role { font-size: .78rem; color: var(--cocoa-soft); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 10px;
}
@media (min-width: 700px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-box {
  background: var(--pink-soft);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--berry);
  font-weight: 700;
  display: block;
}
.stat-box .label { font-size: .78rem; color: var(--cocoa-soft); font-weight: 700; }

/* ============================================
   PUNTOS DE VENTA — buscador + listado
   ============================================ */
.pv-search-wrap {
  max-width: 480px;
  margin: 0 auto 26px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--pink-frost);
  border-radius: 999px;
  padding: 4px 6px 4px 18px;
  box-shadow: var(--shadow-soft);
}
.pv-search-wrap svg { width: 18px; height: 18px; color: var(--berry); flex-shrink: 0; }
.pv-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--cocoa);
  padding: 10px 10px;
}

.pv-list { display: block; }
.pv-table {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.pv-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pink-soft);
}
.pv-row:last-child { border-bottom: none; }
.pv-row-head { display: none; }
@media (min-width: 700px) {
  .pv-row { grid-template-columns: 2fr 1fr 1.2fr; align-items: center; gap: 10px; }
  .pv-row-head {
    display: grid;
    background: var(--pink-soft);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--berry-dark);
    padding: 12px 20px;
  }
}
.pv-nombre { font-weight: 800; color: var(--cocoa); font-size: .95rem; }
.pv-ciudad, .pv-contacto { font-size: .85rem; color: var(--cocoa-soft); }
.pv-ciudad::before { content: "📍 "; }
@media (min-width: 700px) { .pv-ciudad::before { content: ""; } }
.pv-contacto::before { content: "☎ "; }
@media (min-width: 700px) { .pv-contacto::before { content: ""; } }
.pv-empty {
  text-align: center;
  color: var(--cocoa-soft);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-soft);
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.contact-card .ic {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.contact-card .ic svg { width: 24px; height: 24px; color: var(--berry); }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p { font-size: .85rem; color: var(--cocoa-soft); margin-bottom: 14px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  margin: 26px auto 0;
}
.contact-form-wrap h2 { font-size: 1.25rem; text-align: center; margin-bottom: 4px; }
.contact-form-wrap .form-sub { text-align: center; color: var(--cocoa-soft); font-size: .85rem; margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label {
  display: block;
  font-weight: 800;
  font-size: .82rem;
  color: var(--cocoa);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--cocoa);
  background: var(--cream-soft);
  border: 2px solid var(--pink-frost);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--berry);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.contact-form-note { font-size: .76rem; color: var(--cocoa-soft); text-align: center; margin-top: 12px; }

/* ============================================
   CURSO DETALLE (curso.html)
   ============================================ */
.curso-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 18px 0 0;
}
.curso-hero img { width: 100%; height: 260px; object-fit: cover; }
@media (min-width: 720px) { .curso-hero img { height: 380px; } }
.curso-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,46,40,.75), transparent 55%);
  display: flex; align-items: flex-end;
  padding: 22px;
}
.curso-hero-overlay h1 { color: var(--white); font-size: 1.7rem; margin-bottom: 4px; }
.curso-hero-overlay .course-tag { color: var(--pink-frost); }

.curso-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 26px;
}
@media (min-width: 860px) { .curso-layout { grid-template-columns: 1.6fr 1fr; } }

.curso-main h2 { font-size: 1.25rem; margin-top: 26px; }
.curso-main h2:first-child { margin-top: 0; }
.curso-main p { color: var(--cocoa-soft); font-size: .95rem; }
.temas-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.temas-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem; color: var(--cocoa);
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.temas-list svg { width: 16px; height: 16px; color: var(--berry); flex-shrink: 0; margin-top: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%; height: 110px; object-fit: cover;
  border-radius: var(--radius-sm);
}
@media (min-width: 560px) { .gallery-grid img { height: 150px; } }

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.curso-sidebar {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 70px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.price-card .precio { font-family: var(--font-display); font-size: 2rem; color: var(--berry); margin-bottom: 2px; }
.price-card .precio-usd { font-size: 1rem; font-weight: 700; color: var(--cocoa-soft); margin-bottom: 4px; }
.price-card .precio-note { font-size: .78rem; color: var(--cocoa-soft); margin-bottom: 16px; }
.price-card .btn { width: 100%; margin-bottom: 8px; }

.resource-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}
.resource-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  transition: background .15s ease;
}
.resource-row:hover { background: var(--pink-soft); }
.resource-row .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.resource-row .ic svg { width: 18px; height: 18px; color: var(--berry); }
.resource-row span { font-weight: 800; font-size: .88rem; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .85rem; color: var(--berry);
  margin-top: 20px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--cocoa);
  color: var(--cream);
  margin-top: 60px;
  padding: 36px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-grid h4 { color: var(--pink-frost); font-size: .95rem; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { color: #E8D9D3; font-size: .87rem; }
.footer-grid a { display: block; margin-bottom: 8px; }
.footer-brand { font-family: var(--font-display); font-style: italic; color: var(--cream); font-size: 1.3rem; margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 26px;
  padding-top: 16px;
  text-align: center;
  font-size: .78rem;
  color: #C7ADA5;
}

/* ============================================
   REDUCED MOTION / FOCUS
   ============================================ */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--caramel);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
