/* ===================================================
   DE TU CASA CUIDO — Hoja de estilos principal
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark:    #1a1a1a;
  --color-navy:    #2d5f8a;
  --color-navy-dk: #1e4266;
  --color-orange:  #d4a035;
  --color-beige:   #f5ede1;
  --color-cream:   #faf7f3;
  --color-white:   #ffffff;
  --color-light:   #f7f6f4;
  --color-text:    #1a1a1a;
  --color-muted:   #6b7280;
  --color-border:  #e5e7eb;

  --font:       'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-pill: 100px;

  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);

  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn--dark:hover { background: #333; border-color: #333; }

.btn--light {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}
.btn--light:hover { background: #f0f0f0; border-color: #f0f0f0; }

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn--orange:hover { background: #c96a29; border-color: #c96a29; }

.btn--full { width: 100%; }

/* ---- Section titles ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--color-dark);
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.25s, background 0.25s;
  will-change: transform;
}
.navbar.scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,1); }
.navbar--hidden  { transform: translateY(-100%); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 62px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.logo-de  { color: var(--color-dark); }
.logo-cuido { color: var(--color-orange); }

.navbar__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.15s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.navbar__links a:hover { color: var(--color-orange); }
.navbar__links a:hover::after { transform: scaleX(1); }

.navbar__cta { flex-shrink: 0; }

.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 3px;
  flex-shrink: 0;
}
.lang-switch__btn {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  transition: all 0.15s;
  letter-spacing: 0.5px;
  line-height: 1;
}
.lang-switch__btn--active {
  background: var(--color-navy);
  color: white;
}
.lang-switch__btn:hover:not(.lang-switch__btn--active) { color: var(--color-dark); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,41,66,0.72) 0%, rgba(26,26,26,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   STATS
   =================================================== */
.stats {
  background: var(--color-navy);
  padding: 64px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item__number span {
  font-size: 0.55em;
  font-family: var(--font);
  font-weight: 600;
  color: var(--color-orange);
}
.stat-item__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===================================================
   SERVICIOS
   =================================================== */
.services {
  padding: 120px 0;
  background: var(--color-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  border: 1px solid transparent;
  border-left: 4px solid var(--color-orange);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-orange);
  background: var(--color-white);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(224,122,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-orange);
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--color-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ===================================================
   PROCESO
   =================================================== */
.process {
  padding: 120px 0;
  background: var(--color-cream);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.process__step-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: rgba(224,122,58,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process__step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.process__step p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 auto;
}
.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--color-orange);
  opacity: 0.3;
  margin-top: 36px;
}

/* ===================================================
   PLANES
   =================================================== */
.plans {
  padding: 120px 0;
  background: var(--color-light);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1.5px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plan-card--featured {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-card__price {
  font-size: 16px;
  color: var(--color-muted);
}
.plan-card__price strong {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-dark);
}

.plan-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.5;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}
.plan-card__features li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.7;
}

.plan-card__btn { margin-top: auto; text-align: center; }

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: var(--color-beige);
  padding: 80px 0;
  text-align: center;
}
.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-band p {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===================================================
   TESTIMONIOS
   =================================================== */
.testimonials {
  padding: 120px 0;
  background: var(--color-white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  font-size: 18px;
  color: var(--color-orange);
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 64px;
  color: rgba(224,122,58,0.12);
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}
.testimonial-card__author span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

/* ===================================================
   POR QUÉ ELEGIRNOS
   =================================================== */
.why {
  padding: 120px 0;
  background: var(--color-cream);
}
.why__intro {
  font-size: 16px;
  color: var(--color-muted);
  text-align: center;
  max-width: 700px;
  margin: -32px auto 56px;
  line-height: 1.7;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-item {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s;
}
.why-item:hover { box-shadow: var(--shadow); }
.why-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(224,122,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-orange);
}
.why-item__icon svg { width: 26px; height: 26px; }
.why-item h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.why-item p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ===================================================
   BLOG PREVIEW
   =================================================== */
.blog-preview {
  padding: 120px 0;
  background: var(--color-light);
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.blog-card__img-link { display: block; }
.blog-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__img-link { overflow: hidden; }
.blog-card__body {
  padding: 28px 28px 32px;
}
.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(224,122,58,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--color-dark);
}
.blog-card h3 a { color: inherit; transition: color 0.15s; }
.blog-card h3 a:hover { color: var(--color-orange); }
.blog-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card__link:hover { gap: 8px; }
.blog-preview__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================================
   CONTACTO
   =================================================== */
.contact {
  padding: 120px 0;
  background: var(--color-white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__info-block h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.contact__info-block p {
  font-size: 15px;
  line-height: 1.6;
}
.contact__info-block a { color: var(--color-orange); }
.contact__info-block a:hover { text-decoration: underline; }
.contact__note {
  font-size: 13px;
  color: var(--color-muted);
}

/* ===================================================
   FORMULARIOS
   =================================================== */
.contact__form,
.budget__form {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 44px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.budget {
  padding: 120px 0;
  background: var(--color-cream);
}
.budget__form {
  max-width: 760px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row .form-group { margin-bottom: 0; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(224,122,58,0.1);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 120px 0;
  background: var(--color-light);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] { border-color: var(--color-orange); }
.faq__item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  color: var(--color-dark);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--color-orange);
  transition: transform 0.2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
}
.faq__item p a { color: var(--color-orange); text-decoration: underline; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.85);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px 40px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer__logo {
  margin-bottom: 16px;
  display: inline-block;
}
.footer__logo img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  display: block;
}
.footer__logo .logo-de  { color: rgba(255,255,255,0.9); }
.footer__logo .logo-cuido { color: var(--color-orange); }

.footer__col p,
.footer__col--brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer__tagline { font-style: italic; margin-top: 8px; }
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer__social a:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
  background: rgba(224,122,58,0.1);
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__col ul + h4 {
  margin-top: 28px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer__col ul a:hover { color: var(--color-orange); }
.footer__col a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer__col a:hover { color: var(--color-orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p,
.footer__bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}
.footer__bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  transition: color 0.15s;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom nav {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .footer__bottom .container { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===================================================
   WHATSAPP BUTTON
   =================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ===================================================
   BLOG — estilos para páginas de artículo
   =================================================== */
.blog-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.blog-page__hero {
  background: var(--color-navy);
  padding: 80px 0 60px;
  color: white;
}
.blog-page__hero .container { max-width: 800px; }
.blog-page__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.blog-page__breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.blog-page__breadcrumb a:hover { color: var(--color-orange); }
.blog-page__breadcrumb span { margin: 0 8px; }
.blog-page__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(224,122,58,0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.blog-page__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.blog-page__meta {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.blog-page__cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
}
.blog-page__body {
  padding: 72px 0;
  background: var(--color-white);
}
.blog-page__body .container { max-width: 800px; }
.prose {
  font-size: 17px;
  line-height: 1.85;
  color: #2d2d2d;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 48px 0 16px;
  letter-spacing: -0.3px;
}
.prose h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 32px 0 12px;
}
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol {
  margin: 20px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { line-height: 1.7; }
.prose strong { color: var(--color-dark); font-weight: 700; }
.prose a { color: var(--color-orange); text-decoration: underline; }
.prose a:hover { text-decoration: none; }
.prose .callout {
  background: var(--color-cream);
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
}
.blog-page__cta-box {
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-top: 56px;
}
.blog-page__cta-box h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-page__cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ===================================================
   RESPONSIVE — Tablet (≤1024px)
   =================================================== */
@media (max-width: 1024px) {
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid   { grid-template-columns: repeat(2, 1fr); }
  .why__grid            { grid-template-columns: 1fr; }
  .plans__grid          { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card--featured  { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .contact__inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner        { grid-template-columns: 1fr 1fr; }
  .footer__col--brand   { grid-column: 1 / -1; }
  .blog-preview__grid   { grid-template-columns: 1fr 1fr; }
  .blog-index-grid      { grid-template-columns: 1fr 1fr; }
  .stats__grid          { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process__steps       { flex-direction: column; align-items: center; }
  .process__connector   { width: 2px; height: 36px; margin: 0; }

  /* Reducir padding secciones en tablet */
  .services, .process, .plans, .testimonials,
  .why, .blog-preview, .contact, .budget, .faq { padding: 80px 0; }
}

/* ===================================================
   RESPONSIVE — Móvil (≤768px)
   =================================================== */
@media (max-width: 768px) {

  /* Navbar */
  :root { --nav-h: 64px; }
  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
  .navbar__burger { display: flex; }
  .navbar__logo img { height: 50px; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .navbar__links.open a {
    font-size: 16px;
    padding: 4px 0;
  }

  /* Hero */
  .hero__eyebrow  { font-size: 12px; }
  .hero__title    { font-size: 30px; letter-spacing: -0.5px; }
  .hero__subtitle { font-size: 15px; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__content  { padding-top: 40px; padding-bottom: 72px; }

  /* Stats */
  .stats { padding: 48px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item__number { font-size: 36px; }

  /* Grids → columna única */
  .services__grid     { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-index-grid    { grid-template-columns: 1fr; }

  /* Proceso: texto más compacto */
  .process__step-num { font-size: 52px; }
  .process__step { padding: 0 16px; width: 100%; max-width: 400px; }

  /* Formularios */
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group { margin-bottom: 20px; }
  .contact__form,
  .budget__form { padding: 24px 20px; }

  /* Footer columna única */
  .footer__inner      { grid-template-columns: 1fr; gap: 28px; }
  .footer__col--brand { grid-column: auto; }
  .footer__logo img   { height: 64px; }

  /* WhatsApp: solo icono en móvil */
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; bottom: 20px; right: 20px; }

  /* Blog */
  .blog-page__cover { height: 220px; }
  .blog-page__body  { padding: 48px 0; }
  .prose { font-size: 16px; }
  .prose h2 { font-size: 22px; margin: 36px 0 12px; }

  /* Secciones: padding reducido */
  .services, .process, .plans, .testimonials,
  .why, .blog-preview, .contact, .budget, .faq { padding: 64px 0; }
  .cta-band { padding: 56px 0; }
}

/* ===================================================
   RESPONSIVE — Móvil pequeño (≤480px)
   =================================================== */
@media (max-width: 480px) {
  .section-title  { font-size: 24px; }
  .plan-card      { padding: 24px 18px; }
  .service-card   { padding: 28px 24px; }
  .why-item       { padding: 28px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .hero__title    { font-size: 26px; }

  /* Botones hero full-width más compactos */
  .hero__actions .btn { padding: 13px 20px; font-size: 14px; }

  /* FAQ texto */
  .faq__item summary { font-size: 14px; padding: 16px 18px; }
  .faq__item p       { font-size: 14px; padding: 0 18px 16px; }
}

/* ===================================================
   CHECKBOX DE PRIVACIDAD EN FORMULARIOS
   =================================================== */
.form-group--check {
  margin-bottom: 20px;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-orange);
  cursor: pointer;
}
.check-label a {
  color: var(--color-orange);
  text-decoration: underline;
}

/* ===================================================
   BANNER DE COOKIES
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-navy);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--color-orange);
  text-decoration: underline;
}
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--color-orange);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
}

/* ===================================================
   BOTÓN VOLVER ARRIBA
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 997;
  width: 42px;
  height: 42px;
  background: var(--color-navy);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--color-navy-dk); }
@media (max-width: 768px) {
  .back-to-top { bottom: 80px; right: 16px; width: 38px; height: 38px; }
}
