/* ============================================================
   LIFELINE AMIGA — styles.css
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter', Arial, sans-serif; color:#333; background:#fff; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }

/* ===== DESIGN TOKENS ===== */
:root {
  --blue:   #0072AE;
  --red:    #FF5C5C;
  --cream:  #FCF3E8;
  --gray:   #636363;
  --peach:  #F9E7D1;
  --serif:  'Instrument Sans', Georgia, serif;
  --nav-top: 16px;
  --nav-h:   72px;
  --nav-offset: calc(var(--nav-top) + var(--nav-h) + 16px);
  --max-w:  1160px;
  --radius: 20px;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 8px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.nav-logo img { height: 86px; width: auto; object-fit: contain; }
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 44px;
}
.nav-links a { font-size: 16px; font-weight: 500; color: #333; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-dropdown { position: relative; cursor: pointer; font-size: 16px; font-weight: 500; color: #333; user-select: none; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.nav-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 8px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 12px; padding: 8px 0; min-width: 240px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
}
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 16px; color: #333; transition: background .15s; }
.dropdown-menu a:hover { background: var(--cream); color: var(--blue); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: all .3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-top) + var(--nav-h) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 24px 24px;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: #333; border-bottom: 1px solid #f0f0f0; }
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--blue); }
.nav-mobile-group-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; padding: 16px 0 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/heroandservices.jpg');
  background-position: center 30%; background-size: cover; background-repeat: no-repeat;
  filter: blur(1.5px) brightness(1.05); transform: scale(1.03);
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255,255,255,0.10) 0%, transparent 55%); }
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  gap: 80px; padding: calc(var(--nav-top) + var(--nav-h) + 64px) 60px 80px 60px;
}
.hero-left { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 36px; max-width: 520px; }
.hero-left h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 4.2vw, 4rem); font-weight: 700;
  color: var(--blue); line-height: 1.1;
  text-shadow: 0 0 24px rgba(255,255,255,1), 0 0 48px rgba(255,255,255,0.9), 0 0 8px rgba(255,255,255,1);
}
.hero-left h1 em { font-style: italic; color: var(--blue); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-red { padding: 14px 32px; background: var(--red); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 600; transition: background .2s, transform .2s; display: inline-block; white-space: nowrap; }
.btn-red:hover { background: #e04a4a; transform: translateY(-2px); }
.btn-dark { padding: 14px 32px; background: var(--blue); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 600; transition: background .2s, transform .2s; display: inline-block; white-space: nowrap; }
.btn-dark:hover { background: #005a8e; transform: translateY(-2px); }
.hero-right { flex-shrink: 0; width: 320px; }
.wa-card { background: #fff; border-radius: 20px; box-shadow: 0 12px 48px rgba(0,0,0,0.22); overflow: hidden; animation: waBounce 2.2s ease-in-out infinite; }
.wa-card-top { padding: 24px 28px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.wa-card-icon { width: 52px; height: 52px; }
.wa-card-title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--blue); line-height: 1.3; }
.wa-card-sub { font-size: 15px; color: var(--blue); font-weight: 500; }
.wa-card-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.wa-card-btn { display: block; margin: 18px 22px 22px; background: var(--red); color: #fff; text-align: center; padding: 15px 20px; border-radius: 50px; font-size: 16px; font-weight: 700; transition: background .2s; }
.wa-card-btn:hover { background: #e04a4a; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  25%      { transform: translateY(-14px); }
  40%      { transform: translateY(-7px); }
  55%      { transform: translateY(-11px); }
  70%      { transform: translateY(-4px); }
}

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  position: relative; height: 500px; display: flex; align-items: center;
  justify-content: center; padding-top: 80px; overflow: hidden; margin-top: 0;
}
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.60) 100%); }
.page-hero h1 {
  position: relative; z-index: 2; font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.4); font-weight: 700; padding: 0 24px;
}
.page-hero--location {
  height: 380px; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; gap: 20px;
  padding: 0 calc((100% - 1200px) / 2 + 60px) 48px;
}
.page-hero--location h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); text-align: left; padding: 0; }
.page-header { margin-top: var(--nav-offset); background: var(--cream); padding: 64px 40px 56px; text-align: center; }
.page-header h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: #1a1a1a; font-weight: 700; }

/* ============================================================
   CONTENT
   ============================================================ */
.content { max-width: 1200px; margin: 0 auto; padding: 72px 60px 80px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: #1a1a1a; margin-bottom: 52px; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-ghost { padding: 13px 30px; border: 2px solid rgba(255,255,255,.85); color: #fff; border-radius: 50px; font-size: 14px; font-weight: 600; background: rgba(255,255,255,.08); transition: background .2s, border-color .2s; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: background .2s, transform .2s; }
.btn-primary:hover { background: #005a8e; transform: translateY(-2px); }
.btn-primary img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.btn-wa-solid { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 26px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: background .2s; }
.btn-wa-solid:hover { background: #1ebe5d; }
.btn-wa-solid img { width: 20px; height: 20px; }
.btn-wa-hero { position: relative; z-index: 2; display: inline-flex; align-items: center; background: var(--red); color: #fff; padding: 13px 28px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: background .2s; box-shadow: 0 4px 20px rgba(255,92,92,.4); }
.btn-wa-hero img { display: none; }
.btn-wa-hero:hover { background: #e04a4a; }
.btn-wa-card { display: flex; align-items: center; justify-content: center; background: var(--red); color: #fff; padding: 13px 20px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: background .2s; align-self: stretch; text-align: center; }
.btn-wa-card img { display: none; }
.btn-wa-card:hover { background: #e04a4a; }

/* ============================================================
   SERVICES CAROUSEL
   ============================================================ */
.services-section { position: relative; padding: 88px 60px; overflow: hidden; }
.services-section::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/heroandservices.jpg'); background-position: center 60%; background-size: cover; filter: blur(6px) brightness(1.05); transform: scale(1.05); z-index: 0; }
.services-section::after { content: ''; position: absolute; inset: 0; background: rgba(255,245,235,0.45); z-index: 1; }
.carousel-outer { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.services-section .section-title { text-align: left; color: var(--blue); margin-bottom: 40px; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.svc-card { flex: 0 0 calc((100% - 48px) / 3); background: var(--cream); border-radius: var(--radius); padding: 36px 32px 32px; box-shadow: 0 2px 20px rgba(0,0,0,.08); transition: transform .25s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,.13); }
.svc-card .svc-icon { width: 52px; height: 52px; margin-bottom: 22px; object-fit: contain; }
.svc-card h3 { font-family: var(--serif); font-size: 1.15rem; color: #1a1a1a; margin-bottom: 12px; line-height: 1.3; }
.svc-card p  { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.svc-card .svc-link { display: inline-block; background: var(--blue); color: #fff; font-size: 14px; font-weight: 600; padding: 10px 24px; border-radius: 50px; transition: background .2s, transform .2s; }
.svc-card .svc-link:hover { background: #005a8e; transform: translateY(-2px); }
.carousel-controls { position: absolute; top: 0; right: 0; display: flex; gap: 10px; }
.c-btn { width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; background: #2a2a2a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.c-btn:hover { background: var(--blue); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--cream); padding: 88px 60px; }
.about-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.about-left h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: #1a1a1a; margin-bottom: 32px; }
.about-left h2 span { color: var(--red); }
.about-list { list-style: none; }
.about-list-item { padding: 20px 0; border-bottom: 1px dashed #e0b8a8; display: flex; flex-direction: column; gap: 6px; }
.about-list-item:first-child { border-top: none; padding-top: 0; }
.about-list-item .dot-label { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1rem; font-weight: 600; color: #1a1a1a; }
.about-list-item .dot-label::before { content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.about-list-item.mission .dot-label { font-weight: 400; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--gray); }
.about-list-item p { font-size: 14px; color: var(--gray); line-height: 1.65; padding-left: 20px; }
.about-right { display: flex; flex-direction: column; align-items: center; gap: 28px; position: sticky; top: 120px; align-self: start; }
.about-logo-circle { width: 280px; height: 280px; border-radius: 50%; overflow: hidden; border: 3px solid var(--blue); background: #fff; display: flex; align-items: center; justify-content: center; }
.about-logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.btn-about-wa { display: block; width: 100%; background: var(--red); color: #fff; text-align: center; padding: 16px 24px; border-radius: 50px; font-size: 15px; font-weight: 700; transition: background .2s; }
.btn-about-wa:hover { background: #e04a4a; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; margin-bottom: 56px; }
.about-item h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--blue); margin-bottom: 8px; }
.about-item p  { font-size: 14px; color: var(--gray); line-height: 1.65; }
.about-cta { display: flex; justify-content: center; }

/* ============================================================
   BRANDY
   ============================================================ */
.brandy-section { background: #f0ece8; }
.brandy-banner { position: relative; padding: 64px 80px 56px; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.brandy-banner-bg { position: absolute; inset: 0; background-image: url('../assets/howcanwehelp.png'); background-position: center 40%; background-size: cover; filter: brightness(0.45); z-index: 0; }
.brandy-banner-content { position: relative; z-index: 1; max-width: var(--max-w); width: 100%; margin: 0 auto; }
.brandy-banner-content h2 { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.1; }
.brandy-banner-content .role { font-size: 20px; font-weight: 600; color: #fff; opacity: 0.9; margin-bottom: 20px; display: block; }
.brandy-banner-content p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.75; font-weight: 500; }
.brandy-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 500px; gap: 72px; align-items: start; padding: 72px 80px 88px; }
.brandy-text p { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; text-align: justify; }
.brandy-photo-wrap { display: flex; flex-direction: column; gap: 0; }
.brandy-photo { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; max-height: 600px; }
.brandy-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brandy-photo-btn { display: block; background: var(--red); color: #fff; text-align: center; padding: 18px 24px; border-radius: 0 0 var(--radius) var(--radius); font-size: 16px; font-weight: 700; transition: background .2s; }
.brandy-photo-btn:hover { background: #e04a4a; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.info-block { background: var(--cream); border-radius: var(--radius); padding: 44px 48px; margin-bottom: 60px; }
.info-block h2 { font-family: var(--serif); font-size: 1.4rem; color: #1a1a1a; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray); line-height: 1.55; }
.check-item::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.check-grid .check-item { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.note-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.note { font-size: 13px; color: #555; font-style: italic; line-height: 1.6; padding: 12px 16px; background: rgba(0,0,0,.03); border-radius: 10px; border-left: 3px solid var(--blue); }
.divider { height: 1px; background: #eee; margin: 48px 0; }
.fine-print { background: var(--peach); border-radius: 16px; padding: 32px 36px; }
.fine-print p { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.fine-print p:last-child { margin-bottom: 0; }
.fine-print strong { color: #444; }
.plans-title { font-family: var(--serif); font-size: 1.8rem; color: var(--blue); text-align: center; margin-bottom: 36px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.prices-grid, .services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.plan-card, .price-card, .svc-detail-card { background: var(--cream); border: none; border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; transition: box-shadow .25s; }
.plan-card:hover, .price-card:hover, .svc-detail-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); }
.plan-card h3, .price-card h3, .svc-detail-card h3 { font-family: var(--serif); font-size: 1.15rem; color: #1a1a1a; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.08); }
.plan-card p, .svc-detail-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 12px; }
.plan-avail, .svc-meta { font-size: 12.5px; color: #555; font-weight: 400; margin-bottom: 12px; }
.plan-price-label, .svc-price-label { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.plan-prices { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.plan-usd { font-family: var(--serif); font-size: 1.8rem; color: #1a1a1a; font-weight: 700; line-height: 1.2; }
.plan-usd span { font-size: 13px; color: var(--gray); font-weight: 400; }
.plan-mxn { font-family: var(--serif); font-size: 1.8rem; color: #1a1a1a; font-weight: 700; line-height: 1.2; }
.plan-mxn span { font-size: 13px; color: var(--gray); font-weight: 400; }
.plan-card:nth-child(odd)  { background: #F5E6D3 !important; }
.plan-card:nth-child(even) { background: #FCF3E8 !important; }
.price-rows { flex: 1; margin-bottom: 24px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #f0f0f0; gap: 12px; }
.price-row:last-child { border-bottom: none; }
.price-row .plabel { font-size: 13.5px; color: var(--gray); }
.price-row .pamount { font-size: 13.5px; color: #1a1a1a; font-weight: 600; text-align: right; }
.price-list { list-style: none; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 24px; border-bottom: 1px solid #f0f0f0; gap: 16px; font-size: 14px; }
.price-list li:last-child { border-bottom: none; }
.price-list li:nth-child(odd) { background: #fafafa; }
.price-list .p-label { color: var(--gray); flex: 1; }
.price-list .p-val { color: #1a1a1a; font-weight: 600; text-align: right; white-space: nowrap; }
.price-note { font-size: 13px; color: #999; font-style: italic; padding: 0 4px; }
.svc-prices { margin-bottom: 24px; }
.svc-price-row { font-size: 15px; color: #1a1a1a; font-weight: 600; margin-bottom: 4px; }
.svc-price-note { font-size: 13px; color: #999; margin-top: 6px; font-style: italic; }
.tag-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.tag { background: var(--cream); border-radius: 50px; padding: 10px 20px; font-size: 13.5px; color: #444; font-weight: 500; }
.sections-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px 20px; }
.section-pill { display: flex; align-items: center; gap: 8px; background: var(--cream); border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #444; }
.section-pill::before { content: '📄'; font-size: 15px; }
.pricing-section { margin-bottom: 56px; }
.pricing-section h2 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.pricing-section h3 { font-family: var(--serif); font-size: 1.5rem; color: #1a1a1a; margin-bottom: 20px; }
.disclaimer-item { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px dashed #e8b4a0; }
.disclaimer-item h3 { font-family: var(--serif); font-size: 1.1rem; color: #1a1a1a; margin-bottom: 12px; line-height: 1.3; }
.disclaimer-item p  { font-size: 14.5px; color: var(--gray); line-height: 1.75; }
.disclaimer-item h3::before { content: ''; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--red); margin-right: 10px; vertical-align: middle; }

/* ============================================================
   WELL-CHECK
   ============================================================ */
.consult-wrap { background: var(--cream); padding: 60px 80px; }
.consult-inner { max-width: var(--max-w); margin: 0 auto; }
.consult-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.consult-left { display: flex; flex-direction: column; gap: 20px; }
.consult-img { width: 100%; height: 480px; object-fit: cover; display: block; border-radius: var(--radius); }
.consult-body { display: flex; flex-direction: column; }
.consult-body h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--blue); margin-bottom: 16px; line-height: 1.25; }
.consult-bullets { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.consult-bullet { font-size: 15px; font-weight: 400; color: #1a1a1a; padding-left: 14px; position: relative; line-height: 1.5; }
.consult-bullet::before { content: '•'; position: absolute; left: 0; top: 0; font-size: 14px; line-height: 1.5; }
.consult-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.consult-tag { font-size: 15px; color: #333; line-height: 1.4; padding: 10px 14px; background: #fff; border: 1.5px dashed #e8b4a0; border-radius: 10px; }
.consult-notes-below { display: flex; flex-direction: column; gap: 10px; }
.consult-note-item { font-size: 14px; color: #333; line-height: 1.65; padding-left: 14px; position: relative; }
.consult-note-item::before { content: '•'; position: absolute; left: 0; top: 0; font-size: 14px; line-height: 1.65; font-weight: 700; }

/* ============================================================
   LOCATION PAGES
   ============================================================ */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px dashed var(--red); border-radius: 16px; margin-bottom: 48px; }
.location-col { padding: 36px 32px; border-right: 2px dashed var(--red); background: #fff; }
.location-col:last-child { border-right: none; }
.location-col h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; line-height: 1.3; }
.location-col h4 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 16px 0 8px; }
.location-col ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.location-col ul li { font-size: 15px; color: var(--gray); line-height: 1.55; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-wrapper { position: relative; overflow: hidden; padding: 32px 24px; }
.footer-wrapper::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/howcanwehelp.png'); background-position: center 70%; background-size: cover; z-index: 0; }
footer { position: relative; z-index: 1; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-radius: 50px; max-width: 1100px; margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.10); color: #555; }
.footer-copy { font-size: 15px; font-weight: 600; color: #444; text-align: center; flex: 1; }
.footer-copy a { color: #444; transition: color .2s; }
.footer-copy a:hover { color: var(--blue); }
.footer-social { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.footer-social a img { width: 34px; height: 34px; object-fit: contain; transition: opacity .2s; }
.footer-social a:hover img { opacity: 0.75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Previene scroll horizontal global */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
  nav { width: calc(100% - 32px); padding: 0 16px 0 12px; }
  .services-section, .about-section { padding: 64px 32px; }
  .brandy-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 64px 40px; }
  .brandy-banner { padding: 56px 40px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr 280px; gap: 48px; }
}

@media (max-width: 900px) {
  /* HERO */
  .hero-content { flex-direction: column; align-items: flex-start; padding: 130px 28px 60px; gap: 32px; }
  .hero-left { max-width: 100%; }
  .hero-right { width: 100%; max-width: 340px; }

  /* ABOUT — columna única, logo ABAJO */
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
  }
  .about-left  { order: 1; width: 100%; }
  .about-right {
    order: 2;
    position: static !important;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .about-logo-circle { width: 180px !important; height: 180px !important; }
  .btn-about-wa { max-width: 280px; width: 100%; }

  /* CONSULT */
  .consult-wrap { padding: 40px 32px; }
  .consult-block { grid-template-columns: 1fr; gap: 32px; }
  .consult-img { height: 280px; }
  .consult-tags { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; --nav-top: 10px; }

  /* NAV */
  nav { border-radius: 16px; width: calc(100% - 24px); height: 70px; padding: 0 16px 0 10px; }
  .nav-logo img { height: 62px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { top: calc(10px + 70px + 8px); width: calc(100% - 24px); border-radius: 16px; }

  /* HERO */
  .hero { min-height: auto; overflow: hidden; }
  .hero-content { flex-direction: column; align-items: flex-start; padding: 110px 20px 48px; gap: 28px; }
  .hero-left h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-right { width: 100%; max-width: 100%; }
  .wa-card { max-width: 100%; }

  /* SERVICES — tarjetas apiladas */
  .services-section { padding: 56px 20px; overflow: hidden; }
  .carousel-viewport { overflow: hidden; }
  .svc-card { flex: 0 0 calc(100vw - 56px); }
  .carousel-controls { top: -52px; }

  /* ABOUT */
  .about-section { padding: 56px 20px; }
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    overflow: hidden;
  }
  .about-left  { order: 1; width: 100%; }
  .about-right {
    order: 2;
    position: static !important;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .about-logo-circle { width: 160px !important; height: 160px !important; }
  .btn-about-wa { max-width: 260px; width: 100%; }

  /* BRANDY */
  .brandy-banner { padding: 48px 20px 40px; }
  .brandy-inner { grid-template-columns: 1fr !important; padding: 48px 20px 64px; gap: 40px; }
  .brandy-text p { font-size: 15px; }

  /* INNER PAGES */
  .content { padding: 48px 20px 60px; }
  .info-block { padding: 28px 20px; }
  .check-grid { grid-template-columns: 1fr; }
  .plans-grid, .prices-grid, .services-grid { grid-template-columns: 1fr; }
  .sections-grid { grid-template-columns: 1fr 1fr; }
  .price-list li { flex-direction: column; gap: 4px; }
  .price-list .p-val { text-align: left; }

  /* LOCATION */
  .location-grid { grid-template-columns: 1fr; }
  .location-col { border-right: none; border-bottom: 2px dashed var(--red); }
  .location-col:last-child { border-bottom: none; }
  .page-hero--location { padding: 0 20px 36px; }
  .page-hero { height: 360px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

  /* FOOTER */
  footer { flex-direction: column; text-align: center; padding: 24px 20px; border-radius: 20px; }
  .page-header { padding: 44px 20px 36px; }

  /* CONSULT */
  .consult-wrap { padding: 40px 20px; }
  .consult-block { grid-template-columns: 1fr; }
  .consult-img { height: 260px; }
  .consult-tags { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 100px 16px 40px; }
  .hero-left h1 { font-size: 1.85rem; }
  .hero-btns { flex-direction: column; gap: 10px; width: 100%; }
  .btn-red, .btn-dark { text-align: center; width: 100%; }
  .brandy-banner { padding: 40px 16px 32px; }
  .brandy-inner { padding: 40px 16px 48px; }
  .brandy-banner-content p { font-size: 15px; }
}

@media (max-width: 480px) {
  .sections-grid { grid-template-columns: 1fr; }
  .about-logo-circle { width: 140px !important; height: 140px !important; }
  .tag-row { gap: 8px; }
  .tag { font-size: 12.5px; padding: 8px 14px; }
  .svc-card { flex: 0 0 calc(100vw - 40px); }
}