/* ============================================
   SANDRA SALAZAR INC - Psicóloga Clínica
   Stylesheet Principal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --teal:        #5dd5c8;
  --teal-dark:   #3db8ab;
  --teal-light:  #c0f0ea;
  --navy:        #1a3566;
  --navy-dark:   #0d1b3e;
  --peach:       #fdf0ec;
  --pink-light:  #f8e4df;
  --white:       #ffffff;
  --text:        #666;
  --heading:     #1a3566;
  --border:      #e0e0e0;
  --green-wa:    #25d366;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --transition:  .3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { color: var(--heading); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; }

.logo-font { font-family: 'Cormorant Garamond', serif; }
.teal-text  { color: var(--teal-dark); }
.navy-text  { color: var(--navy); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover { background: var(--teal-light); }

/* ---- Section helpers ---- */
.section { padding: 80px 0; }
.section-peach { background: var(--peach); }
.section-teal-light { background: #e8f9f7; }
.section-navy { background: var(--navy-dark); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  height: 70px;
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a, .nav-links .dropdown > a {
  padding: .5rem .75rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--heading);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links .dropdown > a:hover { color: var(--teal-dark); background: var(--teal-light); }
.nav-links a.active { color: var(--teal-dark); border-bottom: 2px solid var(--teal-dark); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: .25rem; cursor: pointer; }
.dropdown > a::after { content: '▾'; font-size: .7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: .5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .875rem;
  color: var(--heading);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--peach); color: var(--teal-dark); }
.dropdown-menu a.active { color: var(--teal-dark); font-weight: 600; }

/* Nav icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.nav-icons a, .nav-icons button {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--heading);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-icons a:hover, .nav-icons button:hover { background: var(--teal-light); color: var(--teal-dark); }
.lang-btn {
  font-size: .8rem !important;
  font-weight: 700;
  width: auto !important;
  padding: 0 .5rem;
  border-radius: 6px !important;
}

/* Mobile toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO / SLIDER ---- */
.hero {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7eddd4 0%, #5dc9bc 40%, #4bb8aa 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
/* Decorative geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  right: -100px; bottom: -150px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  left: 30%; top: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.hero-text { padding: 3rem 0; }
.hero-text .pre-title {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy-dark);
  display: block;
  margin-bottom: .25rem;
}
.hero-text h1 {
  color: var(--navy-dark);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.hero-text .sub {
  color: var(--navy-dark);
  font-size: 1rem;
  opacity: .8;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Arch decorative */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
}
.arch {
  position: absolute;
  border: 3px solid rgba(255,255,255,.5);
  border-radius: 100px 100px 0 0;
}
.arch-1 { width: 220px; height: 320px; bottom: 0; left: 50%; transform: translateX(-50%); }
.arch-2 { width: 180px; height: 260px; bottom: 0; left: 50%; transform: translateX(-50%); }
.hero-img {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 200px 200px 0 0;
}
.hero-ss-badge {
  position: absolute;
  top: 20px; left: 20px;
  width: 70px; height: 70px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy-dark);
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.4);
}
.float-icon {
  position: absolute;
  z-index: 3;
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  font-size: 1.3rem;
  animation: floatY 3s ease-in-out infinite;
}
.float-icon:nth-child(2) { top: 80px; right: 10px; animation-delay: .5s; }
.float-icon:nth-child(3) { top: 200px; right: -20px; animation-delay: 1s; }
.float-icon:nth-child(4) { bottom: 100px; left: 0; animation-delay: 1.5s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,.6); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* ---- ABOUT SECTION ---- */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 0 120px 0 120px;
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center top;
}
.about-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  width: 90px; height: 90px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.about-arch-deco {
  position: absolute;
  top: 20px; left: -30px;
  width: 100px; height: 150px;
  border: 3px solid var(--navy);
  border-radius: 60px 60px 0 0;
  opacity: .15;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text h2 span { color: var(--teal-dark); }

/* ---- REASONS SECTION ---- */
.reasons-section { background: var(--peach); padding: 80px 0; position: relative; overflow: hidden; }
.reasons-section::before {
  content: 'SIS';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.reasons-header { text-align: center; margin-bottom: 3rem; }
.reasons-header .emoji { font-size: 2rem; margin-bottom: .5rem; display: block; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reason-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.reason-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.reason-card:hover img { transform: scale(1.05); }
.reason-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,50,.7) 0%, transparent 100%);
  padding: 1.5rem 1rem .8rem;
  display: flex; align-items: flex-end; gap: .5rem;
}
.reason-card-overlay .icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.reason-card-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}

/* ---- SERVICES SECTION ---- */
.services-section { padding: 80px 0; }
.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.services-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem; }
.service-card-body h3 { font-size: 1rem; margin-bottom: .5rem; }
.service-card-body p { font-size: .85rem; color: var(--text); margin: 0; }

/* ---- BLOG SECTION ---- */
.blog-section { background: #e8f9f7; padding: 80px 0; }
.blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-header .emoji { font-size: 2rem; display: block; margin-bottom: .5rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body .category {
  font-size: .75rem;
  color: var(--teal-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.blog-card-body p { font-size: .85rem; margin: 0; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy-dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(93,213,200,.1);
  right: -100px; top: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(93,213,200,.08);
  left: -80px; bottom: -80px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-text h2 { color: #fff; margin-bottom: .5rem; }
.cta-text p { color: rgba(255,255,255,.7); margin: 0; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 30px;
}
.footer-brand .logo-mark {
  background: rgba(255,255,255,.1);
  color: var(--teal);
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--navy-dark); }
footer h4 {
  color: var(--teal);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
footer ul li { margin-bottom: .5rem; }
footer ul a { color: rgba(255,255,255,.65); font-size: .875rem; transition: var(--transition); }
footer ul a:hover { color: var(--teal); }
.footer-contact p {
  font-size: .875rem;
  margin-bottom: .5rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.footer-contact p svg, .footer-contact p .icon { flex-shrink: 0; margin-top: 3px; color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--green-wa);
  color: #fff;
  padding: .65rem 1.2rem .65rem .8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.whatsapp-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  margin-top: 70px;
  background: var(--peach);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 2px solid rgba(93,213,200,.2);
  right: 10%; top: -80px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-text h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero-text h1 span { color: var(--teal-dark); }
.page-hero-text p { font-size: 1rem; color: var(--text); max-width: 480px; margin-bottom: 1.5rem; }
.page-hero-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.page-hero-img img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 160px 160px 0 0;
  position: relative;
  z-index: 2;
}
.hero-arch-deco {
  position: absolute;
  border: 3px solid var(--navy);
  border-radius: 80px 80px 0 0;
  opacity: .15;
}
.hero-arch-deco.a1 { width: 260px; height: 380px; bottom: 0; }
.hero-arch-deco.a2 { width: 200px; height: 300px; bottom: 0; }
.ss-circle {
  position: absolute;
  top: 20px; right: 20px;
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  z-index: 3;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal-dark); }
.breadcrumb span { color: var(--text); }

/* ---- CREDENTIALS CARDS ---- */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 48px 0;
}
.cred-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.cred-card:first-child,
.cred-card.active {
  background: var(--peach);
  border-color: var(--teal);
}
.cred-card svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--navy); }
.cred-card h4 { font-size: .9rem; color: var(--navy); }
.cred-card:hover { border-color: var(--teal); transform: translateY(-3px); }

/* ---- SERVICES LIST ---- */
.services-list-section { padding: 80px 0; }
.services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.services-col li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--heading);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.services-col li:first-child { font-weight: 700; color: var(--navy); border-color: var(--teal); }
.services-col li::before { content: '•'; color: var(--teal-dark); flex-shrink: 0; margin-top: 1px; }

/* ---- DETAIL SECTION (service/taller detail) ---- */
.detail-section { background: var(--peach); padding: 80px 0; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.detail-img-slider { position: relative; border-radius: var(--radius); overflow: hidden; }
.detail-img-slider img { width: 100%; height: 420px; object-fit: cover; }

/* ---- TALLER PRODUCT PAGE ---- */
.taller-product { padding: 60px 0; }
.taller-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.taller-media { border-radius: var(--radius); overflow: hidden; position: relative; }
.taller-media img { width: 100%; border-radius: var(--radius); }
.taller-media .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.taller-media .play-btn:hover { background: #fff; transform: translate(-50%, -50%) scale(1.1); }
.taller-info .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
}
.taller-meta { font-size: .9rem; margin-bottom: 1.5rem; }
.taller-meta strong { color: var(--navy); }
.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.quantity-control button {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 8px 0 0 8px;
  transition: var(--transition);
}
.quantity-control button:last-child { border-radius: 0 8px 8px 0; }
.quantity-control button:hover { background: var(--navy-dark); }
.quantity-control input {
  width: 60px; height: 40px;
  text-align: center;
  border: 2px solid var(--navy);
  border-left: none; border-right: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.modal-select {
  width: 100%;
  padding: .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: .9rem;
  background: #fff;
}

/* ---- BLOG LIST ---- */
.blog-featured {
  margin-top: 70px;
  position: relative;
  height: 400px;
  overflow: hidden;
}
.blog-featured img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,.75) 0%, rgba(10,20,50,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.blog-featured-overlay h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .5rem; }
.blog-featured-overlay p { color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 1.5rem; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 60px 0;
}
.blog-main {}
.blog-main-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.blog-main-item img { width: 200px; height: 140px; object-fit: cover; border-radius: 8px; }
.blog-main-item .category { font-size: .75rem; color: var(--teal-dark); font-weight: 600; text-transform: uppercase; }
.blog-main-item h3 { color: var(--navy); margin-bottom: .4rem; font-size: 1.1rem; }
.blog-main-item .meta { font-size: .8rem; color: rgba(0,0,0,.45); display: flex; align-items: center; gap: .75rem; }
.blog-main-item .meta img { width: 28px; height: 28px; border-radius: 50%; }

/* Sidebar */
.blog-sidebar {}
.sidebar-widget { margin-bottom: 2rem; }
.sidebar-widget h4 { color: var(--teal-dark); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--teal); }
.trending-item {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.trending-item img { width: 70px; height: 55px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.trending-item h5 { font-size: .85rem; color: var(--navy); margin-bottom: .2rem; line-height: 1.3; }
.trending-item span { font-size: .75rem; color: var(--text); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  padding: .3rem .85rem;
  border: 1px solid var(--teal-dark);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--teal-dark);
  cursor: pointer;
  transition: var(--transition);
}
.tag:hover { background: var(--teal-dark); color: #fff; }

/* ---- BLOG POST ---- */
.post-hero {
  margin-top: 70px;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  text-align: center;
  align-items: center;
}
.post-hero-overlay h1 { color: #fff; max-width: 700px; margin-bottom: 1rem; }
.post-hero-overlay .author { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); font-size: .9rem; }
.post-hero-overlay .author img { width: 40px; height: 40px; border-radius: 50%; }
.post-content { max-width: 780px; margin: 60px auto; padding: 0 24px; }
.post-content p { margin-bottom: 1.5rem; font-size: 1rem; }
.post-content h2 { margin: 2rem 0 1rem; }
.post-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.5rem; }
.post-content ul li { margin-bottom: .5rem; }
.post-content blockquote {
  border-left: 4px solid var(--teal);
  background: var(--peach);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
.post-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
  background: #000;
}
.post-video img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.post-video .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
}
.post-author-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--peach);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 3rem 0;
}
.post-author-box img { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; }
.post-author-box h4 { color: var(--navy); margin-bottom: .25rem; }
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.post-nav a {
  background: #fff;
  padding: 2rem;
  display: block;
  transition: var(--transition);
}
.post-nav a:hover { background: var(--peach); }
.post-nav .label { font-size: .8rem; color: var(--text); margin-bottom: .5rem; display: block; }
.post-nav a h4 { color: var(--navy); font-size: .95rem; margin: 0; }
.post-nav a:last-child { text-align: right; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-img-wrap { position: relative; }
.contact-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.contact-ss-circle {
  position: absolute;
  top: 30px; right: -20px;
  width: 90px; height: 90px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  z-index: 3;
  box-shadow: var(--shadow);
}

/* ---- FORM STYLES ---- */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input {
  width: 100%;
  padding: .8rem 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  outline: none;
  font-size: .95rem;
  color: var(--heading);
  background: transparent;
  transition: var(--transition);
}
.form-input:focus { border-bottom-color: var(--navy); }
.form-input::placeholder { color: #aaa; }
textarea.form-input { height: 100px; resize: vertical; }
.form-select {
  width: 100%;
  padding: .8rem 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  outline: none;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
  appearance: none;
  cursor: pointer;
}

/* ---- INSTAGRAM SECTION ---- */
.instagram-section { padding: 80px 0; background: var(--peach); }
.insta-header { margin-bottom: 2rem; }
.insta-header h2 { font-size: 1.8rem; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
.insta-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insta-card:hover img { transform: scale(1.05); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,50,.4);
  display: flex;
  align-items: flex-end;
  padding: .75rem;
  opacity: 0;
  transition: var(--transition);
}
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-stats { display: flex; gap: 1rem; color: #fff; font-size: .8rem; font-weight: 600; }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
}
.mobile-nav a:hover { color: var(--teal-dark); }
.mobile-nav .mob-sub {
  padding-left: 1rem;
  font-size: .9rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-scroll { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-icons .lang-btn { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: 70vh; }
  .hero-text { padding: 2rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .services-scroll { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cols { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .taller-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-main-item { grid-template-columns: 1fr; }
  .blog-main-item img { width: 100%; height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-img-wrap { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav a:last-child { text-align: left; }
}

@media (max-width: 480px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-scroll { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

/* ---- UTILITY ---- */
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.small { font-size: .85rem; }

/* ---- SEARCH BAR ---- */
.search-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--heading);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.search-toggle:hover { background: var(--teal-light); color: var(--teal-dark); }

.search-bar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  z-index: 999;
  padding: .85rem 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.search-bar.active {
  transform: translateY(0);
  opacity: 1;
}
.search-form {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--cream, #f8f5f0);
  border-radius: 50px;
  padding: .55rem 1.2rem;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.search-form:focus-within { border-color: var(--teal); }
.search-form-icon { color: var(--teal); font-size: 1rem; }
.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
  color: var(--heading);
}
.search-form input::placeholder { color: #aaa; }
.search-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  transition: color .2s;
}
.search-close:hover { color: var(--teal-dark); }
.search-results {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  list-style: none;
  margin: 0;
  padding: .4rem 0;
  z-index: 1000;
  overflow: hidden;
}
.search-results li a {
  display: block;
  padding: .65rem 1.2rem;
  color: var(--heading);
  text-decoration: none;
  font-size: .95rem;
  transition: background .15s;
}
.search-results li a:hover { background: var(--teal-light); color: var(--teal-dark); }
.search-form { position: relative; }

/* ---- MODAL INSCRIPCIÓN ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,50,.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(24px);
  transition: transform .3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #aaa;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--teal-light); color: var(--teal-dark); }
.modal-title { font-size: 1.4rem; color: var(--heading); margin-bottom: .25rem; }
.modal-subtitle { color: var(--teal-dark); font-weight: 600; font-size: .95rem; margin-bottom: 1.25rem; }
.modal-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.modal-field label { font-size: .85rem; font-weight: 600; color: var(--heading); }
.modal-field input,
.modal-field textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  resize: vertical;
}
.modal-field input:focus,
.modal-field textarea:focus { border-color: var(--teal); }
.modal-success { text-align: center; padding: 1.5rem 0; }
.modal-success h4 { margin: .75rem 0 .5rem; font-size: 1.2rem; color: var(--heading); }
.modal-success p { color: var(--text); }
