:root {
  --teal: #218CAC;
  --teal-light: #2BA4C8;
  --teal-dark: #1A7290;
  --teal-glow: rgba(33,140,172,0.12);
  --teal-soft: rgba(33,140,172,0.06);
  --mint: #00BEB7;
  --mint-soft: rgba(0,190,183,0.08);
  --cream: #FDF8F3;
  --warm-white: #FEFCFA;
  --rose-mist: #F9F0ED;
  --blush: #E8D5CC;
  --gold: #C4A882;
  --gold-light: #D4BC9C;
  --charcoal: #2C2C2C;
  --text: #1E1E1E;
  --text-soft: #6B6B6B;
  --text-muted: #9A9A9A;
  --border: #E8E2DB;
  --border-light: #F0EBE5;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --nav-h: 72px;
  --bar-h: 40px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --tr: 0.3s ease;
  --tr-fast: 0.15s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
@media(max-width:768px) { .container { padding: 0 1.25rem; } }

/* ======= CONTACT BAR ======= */
.contact-bar { background: var(--teal-dark); height: var(--bar-h); display: flex; align-items: center; position: relative; z-index: 1000; }
.bar-desktop { display: flex; align-items: center; justify-content: center; gap: 2.5rem; width: 100%; padding: 0 2rem; }
.bar-desktop a, .bar-desktop span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.9); white-space: nowrap; transition: color var(--tr); letter-spacing: 0.02em; }
.bar-desktop a:hover { color: #fff; }
.bar-desktop svg { width: 13px; height: 13px; flex-shrink: 0; }
.cb-sep { opacity: 0.35; color: rgba(255,255,255,0.6); }
.ticker-wrap { display: none; overflow: hidden; width: 100%; height: var(--bar-h); align-items: center; }
.ticker-track { display: flex; gap: 2.5rem; align-items: center; animation: ticker 28s linear infinite; width: max-content; }
.ticker-track a, .ticker-track span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; font-weight: 500; color: #fff; white-space: nowrap; }
.ticker-track svg { width: 13px; height: 13px; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media(max-width:768px) { .bar-desktop { display: none; } .ticker-wrap { display: flex; } }
@media(prefers-reduced-motion:reduce) { .ticker-track { animation: none; } }

/* ======= NAV ======= */
nav { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 999; border-bottom: 1px solid var(--border-light); transition: box-shadow var(--tr); }
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; border-radius: 6px; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.01em; }
.nav-logo-sub { font-family: var(--font-body); font-size: 0.62rem; color: var(--teal-dark); letter-spacing: 0.14em; font-weight: 600; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a { color: var(--text-soft); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; transition: color var(--tr); padding: 0.5rem 1.1rem; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.nav-cta { background: var(--teal) !important; color: #fff !important; font-weight: 600 !important; letter-spacing: 0.04em !important; padding: 0.55rem 1.4rem !important; border-radius: var(--radius) !important; transition: all var(--tr) !important; font-size: 0.8rem !important; }
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }
@media(max-width:900px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--charcoal); transition: color var(--tr); }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mobile-close svg { width: 28px; height: 28px; color: var(--charcoal); }

/* ======= HERO ======= */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 40%, var(--rose-mist) 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--mint-soft) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-content { padding: 2rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 600; color: var(--teal); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.hero-badge svg { width: 14px; height: 14px; }
.hero-badge .stars { color: #E9B74A; letter-spacing: 1px; }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--charcoal); line-height: 1.1; margin-bottom: 1.2rem; font-weight: 500; font-style: italic; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: var(--text-soft); line-height: 1.75; max-width: 480px; margin-bottom: 2rem; font-weight: 400; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal); color: #fff; font-size: 0.88rem; font-weight: 600; padding: 0.85rem 2rem; border-radius: var(--radius); transition: all var(--tr); letter-spacing: 0.02em; border: 2px solid var(--teal); }
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(33,140,172,0.25); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--teal); font-size: 0.88rem; font-weight: 600; padding: 0.85rem 2rem; border-radius: var(--radius); transition: all var(--tr); letter-spacing: 0.02em; border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-soft); transform: translateY(-2px); }
.btn-primary svg, .btn-secondary svg { width: 16px; height: 16px; }
.hero-visual { position: relative; }
.hero-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card { position: absolute; bottom: -20px; left: -30px; background: var(--white); border-radius: var(--radius-lg); padding: 1rem 1.3rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); display: flex; align-items: center; gap: 0.75rem; animation: float 6s ease-in-out infinite; }
.hero-float-card .hf-icon { width: 42px; height: 42px; background: var(--teal-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-float-card .hf-icon svg { width: 20px; height: 20px; color: var(--teal); }
.hero-float-card .hf-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.hero-float-card .hf-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-right { position: absolute; top: 20px; right: -20px; background: var(--white); border-radius: var(--radius-lg); padding: 0.8rem 1.1rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); animation: float 6s ease-in-out infinite 1.5s; }
.hero-float-right .stars-mini { color: #E9B74A; font-size: 0.85rem; letter-spacing: 2px; }
.hero-float-right .hfr-text { font-size: 0.72rem; color: var(--text-soft); font-weight: 500; margin-top: 2px; }
@media(max-width:900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; } .hero-content { order: 1; } .hero-visual { order: 0; max-width: 400px; margin: 0 auto; } .hero-sub { margin-left: auto; margin-right: auto; } .hero-ctas { justify-content: center; } .hero-float-card { left: 0; bottom: -10px; } .hero-float-right { right: 0; top: 10px; } .hero { min-height: auto; padding: 3rem 0; } }

/* ======= STATS BAR ======= */
.stats-bar { background: var(--white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-soft); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }
@media(max-width:768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .stat-item:nth-child(2)::after { display: none; } }

/* ======= SECTION GLOBAL ======= */
section { padding: 5rem 0; }
.section-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--charcoal); margin-bottom: 1rem; font-weight: 500; }
.section-subtitle { font-size: 1rem; color: var(--text-soft); max-width: 600px; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ======= APARATOLOGIA ======= */
.tech-section { background: var(--cream); }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tech-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: all var(--tr); position: relative; overflow: hidden; }
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.tech-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--mint)); opacity: 0; transition: opacity var(--tr); }
.tech-card:hover::before { opacity: 1; }
.tech-icon { width: 52px; height: 52px; background: var(--teal-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.tech-icon svg { width: 24px; height: 24px; color: var(--teal); }
.tech-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.tech-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }
.tech-card .tech-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; font-weight: 600; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; background: var(--teal-glow); border-radius: 100px; }
@media(max-width:900px) { .tech-grid { grid-template-columns: 1fr; } }

/* ======= SERVICIOS DESTACADOS ======= */
.services-section { background: var(--warm-white); }
.services-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.services-tabs button { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; padding: 0.6rem 1.3rem; border-radius: 100px; border: 1px solid var(--border); background: var(--white); color: var(--text-soft); transition: all var(--tr); }
.services-tabs button:hover { border-color: var(--teal); color: var(--teal); }
.services-tabs button.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.services-content { display: none; }
.services-content.active { display: block; }
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.srv-card { display: flex; align-items: center; gap: 1.2rem; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; transition: all var(--tr); }
.srv-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.srv-img { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--rose-mist); }
.srv-img img { width: 100%; height: 100%; object-fit: cover; }
.srv-info { flex: 1; }
.srv-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.2rem; }
.srv-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.srv-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--teal); white-space: nowrap; }
.srv-meta { font-size: 0.7rem; color: var(--text-muted); }
@media(max-width:768px) { .srv-grid { grid-template-columns: 1fr; } }

/* ======= GALERIA ======= */
.gallery-section { background: var(--cream); overflow: hidden; }
.gallery-scroll { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; scrollbar-width: none; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 300px; scroll-snap-align: start; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media(max-width:768px) { .gallery-item { flex: 0 0 260px; } }

/* ======= TESTIMONIOS ======= */
.testimonials-section { background: var(--warm-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: all var(--tr); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card::before { content: ''; position: absolute; top: 1.5rem; left: 1.5rem; font-family: var(--font-display); font-size: 4rem; color: var(--teal-glow); line-height: 1; pointer-events: none; }
.testi-stars { color: #E9B74A; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 0.92rem; color: var(--text-soft); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-glow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 1.1rem; }
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.testi-service { font-size: 0.72rem; color: var(--text-muted); }
@media(max-width:900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ======= EQUIPO ======= */
.team-section { background: var(--cream); }
.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.team-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-content .section-label { text-align: left; }
.team-content .section-title { text-align: left; }
.team-text { font-size: 0.95rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 1.5rem; }
.team-members { display: flex; gap: 1.5rem; margin-top: 2rem; }
.team-member { text-align: center; }
.team-member-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-glow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 1.2rem; margin: 0 auto 0.4rem; border: 2px solid var(--teal); }
.team-member-name { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }
.team-member-role { font-size: 0.7rem; color: var(--text-muted); }
@media(max-width:900px) { .team-layout { grid-template-columns: 1fr; gap: 2rem; } .team-photo { max-width: 400px; margin: 0 auto; } }

/* ======= BENEFICIOS ======= */
.benefits-section { background: var(--warm-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card { text-align: center; padding: 2rem 1.5rem; }
.benefit-icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: var(--teal-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--teal); }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.7; }
@media(max-width:768px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ======= MAPA / CONTACTO ======= */
.location-section { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-info h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1.5rem; }
.loc-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.loc-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.loc-item .loc-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.loc-item .loc-value { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
@media(max-width:768px) { .location-grid { grid-template-columns: 1fr; } .location-map { height: 280px; } }

/* ======= CTA FINAL ======= */
.cta-final { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; text-align: center; padding: 5rem 0; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-final h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; margin-bottom: 1rem; color: #fff; }
.cta-final p { font-size: 1.05rem; color: rgba(255,255,255,0.95); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.btn-white { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--teal); font-size: 0.92rem; font-weight: 600; padding: 0.9rem 2.2rem; border-radius: var(--radius); transition: all var(--tr); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ======= FOOTER ======= */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; }
.footer-brand .footer-logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-col .footer-heading { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); padding: 0.3rem 0; transition: color var(--tr); text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 2px; }
.footer-col a:hover { color: var(--teal-light); text-decoration-color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.footer-bottom a { color: var(--teal-light); text-decoration: underline; text-underline-offset: 2px; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ======= WHATSAPP FLOAT ======= */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.35); z-index: 900; transition: transform var(--tr); }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ======= ANIMATIONS ======= */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media(prefers-reduced-motion:reduce) { .fade-in { opacity: 1; transform: none; transition: none; } }
