/* ============================================================
   Coro "Yo te Extrañaré" — Portoviejo, Manabí
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #2E3A59;
  --navy-deep: #222B45;
  --navy-soft: #3A4A71;
  --gold: #B08D57;
  --gold-soft: #D9C4A2;
  --gold-hover: #C19D67;
  --cream: #F6F4EE;
  --ink: #2A2E37;
  --muted: #6B7280;
  --line: #E4DFD4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(46, 58, 89, .13);
  --ease: cubic-bezier(.25, .6, .3, 1);
}

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

html { color-scheme: light; scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.06rem;
  overflow-x: hidden;
}

button, a, input, textarea, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 84px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 9999;
  background: var(--navy); color: #fff; padding: 12px 20px;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase;
  font-size: .78rem; letter-spacing: .24em; font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 11px; height: 11px; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.eyebrow.light { color: var(--gold-soft); }
.eyebrow.light::before { background: var(--gold-soft); }

.section { padding: 96px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.section-head p { color: var(--muted); font-style: italic; font-size: 1.12rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #B9C0D2; }

/* Divider with musical ornament */
.divider {
  display: flex; align-items: center; gap: 22px;
  max-width: 520px; margin: 0 auto;
  color: var(--gold);
  font-size: 1.05rem; line-height: 1;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(46, 58, 89, .25));
}
.divider::after {
  background: linear-gradient(to left, transparent, rgba(46, 58, 89, .25));
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px;
  font-family: 'EB Garamond', serif;
  font-size: .98rem; letter-spacing: .12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-3px); }
.btn-ghost-light { background: transparent; color: var(--gold-soft); border: 1px solid rgba(217, 196, 162, .5); }
.btn-ghost-light:hover { background: var(--gold-soft); color: var(--navy-deep); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Navbar ---------- */
header.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
header.nav.scrolled {
  background: rgba(34, 43, 69, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand .mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem; font-weight: 600; letter-spacing: 1px; line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft);
}

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  color: #fff; font-size: 1rem; letter-spacing: .5px;
  position: relative; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; background: var(--gold); color: #fff !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-hover); }

.hamburger {
  display: flex; align-items: center;
  background: none; border: none; color: #fff; cursor: pointer; font-size: 2rem;
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(80%, 320px);
  background: var(--navy-deep); z-index: 1100;
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 84px 32px; display: flex; flex-direction: column; gap: 24px;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-size: 1.2rem; letter-spacing: 1px; }
.mobile-menu .close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
.menu-overlay {
  position: fixed; inset: 0; background: rgba(20, 25, 40, .55); z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; color: #fff;
  padding: 120px 0 90px;
}
.hero-bg {
  position: absolute; inset: -12% 0;
  background: url('assets/images/hero-velas.jpg') center/cover no-repeat;
  z-index: 0; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(24, 30, 50, .25) 0%, rgba(24, 30, 50, .68) 100%),
    linear-gradient(rgba(24, 30, 50, .5), rgba(24, 30, 50, .72));
}
.hero-content { position: relative; z-index: 3; max-width: 880px; padding: 0 20px; }
.hero-content h1 {
  font-size: clamp(2.7rem, 6.5vw, 4.8rem);
  font-weight: 600; letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeInUp 1s var(--ease) .2s forwards;
}
.hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.32rem);
  color: #EFE9DF; font-style: italic;
  max-width: 620px; margin: 0 auto 38px;
  opacity: 0; animation: fadeInUp 1s var(--ease) .5s forwards;
}
.hero-eyebrow { opacity: 0; animation: fadeInUp 1s var(--ease) 0s forwards; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  opacity: 0; animation: fadeInUp 1s var(--ease) .8s forwards;
}
.hero-cta .btn-gold { animation: pulse 2.6s infinite; padding: 17px 40px; }

.staff-wrap { position: relative; z-index: 3; margin: 0 auto 28px; max-width: 420px; }
.staff-svg { width: 100%; height: auto; }
.staff-svg .line { stroke: rgba(217, 196, 162, .65); stroke-width: 1.3; }
.staff-svg .draw { stroke-dasharray: 420; stroke-dashoffset: 420; animation: drawLine 2.4s var(--ease) forwards .5s; }
.staff-svg .note { fill: var(--gold-soft); opacity: 0; animation: noteIn .5s ease forwards; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold-soft); font-size: .72rem;
  letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeInUp 1s var(--ease) 1.4s forwards;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes noteIn { to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 141, 87, .5); }
  50% { box-shadow: 0 0 24px 6px rgba(176, 141, 87, .2); }
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Values ---------- */
.values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  position: relative;
  background: var(--cream);
  padding: 42px 28px; text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value-card::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold-soft);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.value-icon .material-icons { font-size: 28px; }
.value-card h3 { font-size: 1.42rem; color: var(--navy); margin-bottom: 12px; letter-spacing: .5px; }
.value-card p { color: var(--muted); font-size: 1rem; }

/* ---------- Stats ---------- */
.stats { background: var(--navy); position: relative; overflow: hidden; color: #fff; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(217, 196, 162, .25) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .35;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 20px;
  position: relative; z-index: 1; text-align: center;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.1rem; font-weight: 700; color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.stat .label {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .8rem; color: #CFD4DE; margin-top: 8px;
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img { position: relative; }
.about-img img { width: 100%; height: 520px; object-fit: cover; transition: transform .6s var(--ease); }
.about-img .frame {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold); z-index: -1;
}
.about-img:hover img { transform: scale(1.03); }
.about-img figcaption {
  position: absolute; left: 0; bottom: 0;
  background: rgba(34, 43, 69, .85); color: var(--gold-soft);
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 18px;
}
.about-text h2 { font-size: clamp(2.1rem, 4.2vw, 2.8rem); color: var(--navy); margin-bottom: 20px; letter-spacing: .5px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text .signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.5rem; color: var(--gold);
  margin-top: 26px;
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-img { overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; letter-spacing: .5px; }
.service-body p { color: var(--muted); font-size: 1rem; margin-bottom: 24px; flex: 1; }
.service-body .btn { align-self: flex-start; font-size: .85rem; padding: 12px 26px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); position: relative; }
.gallery::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(176, 141, 87, .06), transparent 60%);
  pointer-events: none;
}
.gallery-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  position: relative; z-index: 1;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}
.gallery-item { overflow: hidden; height: 280px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }

/* ---------- Videos (Facebook) ---------- */
.videos { background: var(--navy-deep); position: relative; overflow: hidden; }
.videos::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(176, 141, 87, .12), transparent 55%);
  pointer-events: none;
}
.videos .container { position: relative; z-index: 1; }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  display: block; background: var(--navy);
  border: 1px solid rgba(217, 196, 162, .18);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
.video-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(24, 30, 50, .05), rgba(24, 30, 50, .35));
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(176, 141, 87, .92); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; padding-left: 5px;
  z-index: 1;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.12); background: var(--gold-hover); }
.video-meta { padding: 18px 20px 20px; }
.video-meta h3 { font-size: 1.22rem; color: #fff; letter-spacing: .5px; margin-bottom: 6px; }
.video-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--gold-soft);
  letter-spacing: .1em; text-transform: uppercase;
}
.videos-cta { text-align: center; margin-top: 46px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.test-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: var(--cream); border: 1px solid var(--line);
  padding: 38px 30px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.test-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; line-height: .5; height: 30px;
  color: var(--gold); opacity: .4;
}
.test-card > p { font-style: italic; color: var(--ink); margin-bottom: 24px; }
.test-stars { color: var(--gold); margin-bottom: 18px; display: flex; gap: 2px; }
.test-stars .material-icons { font-size: 20px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; letter-spacing: 1px;
}
.test-author strong {
  display: block; color: var(--navy); font-size: 1.15rem;
  font-family: 'Cormorant Garamond', serif;
}
.test-author span { font-size: .9rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .material-icons { color: var(--gold); transition: transform .3s var(--ease); }
.faq-q[aria-expanded="true"] .material-icons { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 24px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form .field { margin-bottom: 20px; }
.contact-form label {
  display: block; margin-bottom: 8px;
  font-size: .95rem; letter-spacing: .5px; color: var(--navy);
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); background: var(--cream);
  font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--ink);
  transition: border-color .3s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: #E8F3EA; border: 1px solid #9DC3A6; color: #2E5B3A;
  padding: 14px 18px; margin-bottom: 20px;
}
.form-success.show { display: block; }
.form-error {
  background: #F8ECEA; border: 1px solid #D3A29A; color: #7A3B30;
  padding: 14px 18px; margin-bottom: 20px;
}

.contact-info .info-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-info .info-item .ico {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--navy); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.contact-info .info-item h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 4px; }
.contact-info .info-item p { color: var(--muted); font-size: 1rem; }
.contact-info .info-item a { color: var(--muted); transition: color .3s var(--ease); }
.contact-info .info-item a:hover { color: var(--gold); }
.map-wrap { margin-top: 10px; }
.map-wrap iframe { border: 0; width: 100%; height: 300px; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #CFD4DE; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 44px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }
.footer-col h4 { color: #fff; font-size: 1.4rem; margin-bottom: 18px; letter-spacing: .5px; }
.footer-col p { font-size: .98rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { transition: color .3s var(--ease); }
.footer-col ul a:hover { color: var(--gold-soft); }
.footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(217, 196, 162, .4); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.footer-socials a:hover { background: var(--gold); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px; text-align: center;
  font-size: .9rem; color: #9AA2B3;
}
.footer-bottom .dev { color: var(--gold-soft); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  animation: wapulse 2.2s infinite;
}
@keyframes wapulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-content h1, .hero-sub, .hero-cta, .hero-eyebrow, .hero-scroll { opacity: 1; }
}
