/* =========================================
   HOMEHOUSE — TEMA WORDPRESS — ESTILOS
   ========================================= */

:root {
  --primary: #F18637;
  --primary-dark: #d4722a;
  --secondary: #1C1C1E;
  --secondary-light: #2a2a2e;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-300: #d1d1d1;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--secondary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== UTILS ===== */
.hh-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.hh-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.hh-label--light { color: var(--primary); }

.hh-section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.hh-section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--secondary); line-height: 1.15; margin-bottom: 16px; }
.hh-section-header--light h2 { color: var(--white); }
.hh-section-sub { color: var(--gray-500); font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.hh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.hh-btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.hh-btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,134,55,0.4); }
.hh-btn--secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.hh-btn--secondary:hover { background: var(--secondary-light); border-color: var(--secondary-light); transform: translateY(-2px); }
.hh-btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.hh-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hh-btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); padding: 10px 20px; font-size: 0.75rem; }
.hh-btn--ghost:hover { background: var(--primary); color: var(--white); }
.hh-btn--lg { padding: 18px 36px; font-size: 0.85rem; }
.hh-btn--full { width: 100%; }

/* ===== NAVBAR ===== */
.hh-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(28,28,30,0.95) 0%, rgba(28,28,30,0.7) 60%, transparent 100%);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.hh-navbar.scrolled {
  background: rgba(28,28,30,0.98) !important;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.hh-navbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.hh-navbar__logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
  color: var(--white);
}
.hh-navbar__logo-text {
  font-size: 1.2rem; font-weight: 300; color: var(--white);
  letter-spacing: -0.02em;
}
.hh-navbar__logo-text strong { font-weight: 800; color: var(--primary); }

.hh-navbar__links {
  display: flex; align-items: center; gap: 36px;
  flex: 1; justify-content: center;
}
.hh-navbar__links a {
  color: rgba(255,255,255,0.8); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.hh-navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--transition);
}
.hh-navbar__links a:hover { color: var(--white); }
.hh-navbar__links a:hover::after { width: 100%; }

.hh-navbar__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hh-navbar__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hh-navbar__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all var(--transition);
}

/* ===== HERO ===== */
.hh-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hh-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hh-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hh-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,0.85) 0%, rgba(28,28,30,0.4) 60%, rgba(28,28,30,0.6) 100%);
}
.hh-hero__ticker {
  position: relative; z-index: 2;
  margin-top: 80px; padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; white-space: nowrap;
  background: rgba(0,0,0,0.2);
}
.hh-hero__ticker-track {
  display: inline-flex; gap: 24px;
  animation: ticker 30s linear infinite;
}
.hh-hero__ticker-track span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.hh-hero__ticker-track span:nth-child(even) { color: var(--primary); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hh-hero__content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 800px; padding: 80px 24px 80px 80px;
}
.hh-hero__tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hh-hero__tag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--primary);
}
.hh-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800;
  color: var(--white); line-height: 1.05; margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hh-hero__title em {
  font-family: var(--font-display); font-style: italic;
  color: var(--primary); font-weight: 700;
}
.hh-hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 40px; max-width: 540px;
}
.hh-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hh-hero__scroll {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 24px 80px; color: rgba(255,255,255,0.4);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.hh-hero__scroll-line {
  width: 40px; height: 1px; background: var(--primary);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== STATS ===== */
.hh-stats {
  background: var(--secondary); padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hh-stats__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.hh-stats__item {
  text-align: center; padding: 20px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hh-stats__item strong {
  font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.hh-stats__item span { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.hh-stats__divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.1);
  display: none;
}
@media (min-width: 640px) { .hh-stats__divider { display: block; } }

/* ===== ABOUT ===== */
.hh-about { padding: 120px 0; background: var(--white); }
.hh-about__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hh-about__images { position: relative; }
.hh-about__img-main {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.hh-about__img-badge {
  position: absolute; bottom: -32px; right: -32px;
  width: 220px; height: 200px; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.hh-about__content { padding-left: 16px; }
.hh-about__content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 800;
  color: var(--secondary); line-height: 1.2; margin-bottom: 24px;
}
.hh-about__content > p {
  color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem;
}
.hh-about__items { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.hh-about__item {
  display: flex; align-items: flex-start; gap: 16px;
}
.hh-about__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.hh-about__item strong { display: block; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.hh-about__item p { color: var(--gray-500); font-size: 0.9rem; }

/* ===== GUARANTEE ===== */
.hh-guarantee {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}
.hh-guarantee .hh-section-header h2 { color: var(--white); }
.hh-guarantee__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 60px;
}
.hh-guarantee__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 40px 32px;
  transition: all var(--transition);
}
.hh-guarantee__card:hover {
  background: rgba(241,134,55,0.08);
  border-color: rgba(241,134,55,0.3);
  transform: translateY(-4px);
}
.hh-guarantee__icon { font-size: 2.5rem; margin-bottom: 20px; }
.hh-guarantee__card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.hh-guarantee__card p { color: rgba(255,255,255,0.55); line-height: 1.7; font-size: 0.95rem; }

/* ===== SERVICES ===== */
.hh-services { padding: 120px 0; background: var(--gray-50); }
.hh-services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.hh-services__card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.hh-services__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hh-services__img { height: 240px; overflow: hidden; }
.hh-services__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hh-services__card:hover .hh-services__img img { transform: scale(1.08); }
.hh-services__body { padding: 32px; }
.hh-services__body h3 { font-size: 1.25rem; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.hh-services__body > p { color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.hh-services__body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.hh-services__body li { color: var(--gray-700); font-size: 0.9rem; }

/* ===== COUNTRIES ===== */
.hh-countries {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}
.hh-countries__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.hh-countries__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 48px 32px;
  text-align: center; transition: all var(--transition);
}
.hh-countries__card:hover {
  background: rgba(241,134,55,0.1);
  border-color: rgba(241,134,55,0.4);
  transform: translateY(-4px);
}
.hh-countries__flag { font-size: 3.5rem; margin-bottom: 16px; }
.hh-countries__card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.hh-countries__card p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.hh-countries__tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(241,134,55,0.15); border: 1px solid rgba(241,134,55,0.3);
  color: var(--primary); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px;
}

/* ===== GALLERY ===== */
.hh-gallery { padding: 120px 0; background: var(--white); }
.hh-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.hh-gallery__item { position: relative; overflow: hidden; border-radius: 8px; background: var(--gray-100); }
.hh-gallery__item--wide { grid-column: span 2; }
.hh-gallery__item--tall { grid-row: span 2; }
.hh-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hh-gallery__item:hover img { transform: scale(1.08); }
.hh-gallery__caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity var(--transition);
}
.hh-gallery__item:hover .hh-gallery__caption { opacity: 1; }
.hh-gallery__caption h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.hh-gallery__cta { text-align: center; margin-top: 48px; }

/* ===== SHOWCASE SLIDER ===== */
.hh-showcase {
  background: var(--secondary); position: relative; overflow: hidden;
}
.hh-showcase__slider { position: relative; height: 600px; }
.hh-showcase__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  pointer-events: none;
}
.hh-showcase__slide.is-active { opacity: 1; pointer-events: all; }
.hh-showcase__slide img { width: 100%; height: 100%; object-fit: cover; }
.hh-showcase__info {
  position: absolute; bottom: 80px; left: 80px;
  max-width: 480px;
  background: rgba(28,28,30,0.85);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary);
  padding: 32px 40px; border-radius: 0 var(--radius) var(--radius) 0;
}
.hh-showcase__info h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin: 8px 0 20px; }
.hh-showcase__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 24px;
  background: var(--secondary);
}
.hh-showcase__prev, .hh-showcase__next {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: all var(--transition);
}
.hh-showcase__prev:hover, .hh-showcase__next:hover {
  background: var(--primary); border-color: var(--primary);
}
.hh-showcase__dots { display: flex; gap: 8px; }
.hh-showcase__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all var(--transition);
}
.hh-showcase__dot.is-active { background: var(--primary); transform: scale(1.3); }

/* ===== TESTIMONIALS ===== */
.hh-testimonials { padding: 120px 0; background: var(--gray-50); }
.hh-testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.hh-testimonials__card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.hh-testimonials__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hh-testimonials__stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.hh-testimonials__text {
  color: var(--gray-700); line-height: 1.8; margin-bottom: 28px;
  font-size: 0.95rem; font-style: italic;
}
.hh-testimonials__author { display: flex; align-items: center; gap: 14px; }
.hh-testimonials__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.hh-testimonials__author strong { display: block; font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.hh-testimonials__author span { color: var(--gray-500); font-size: 0.8rem; }

/* ===== PARTNERS ===== */
.hh-partners {
  padding: 64px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.hh-partners__label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 32px;
}
.hh-partners__grid {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 16px;
}
.hh-partners__item {
  padding: 14px 28px;
  border: 1px solid var(--gray-300); border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; color: var(--gray-500);
  letter-spacing: 0.05em; transition: all var(--transition);
}
.hh-partners__item:hover { border-color: var(--primary); color: var(--primary); }

/* ===== BLOG ===== */
.hh-blog { padding: 120px 0; background: var(--white); }
.hh-blog__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.hh-blog__card {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow); transition: all var(--transition);
}
.hh-blog__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hh-blog__img { position: relative; height: 220px; overflow: hidden; }
.hh-blog__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hh-blog__card:hover .hh-blog__img img { transform: scale(1.06); }
.hh-blog__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.hh-blog__body { padding: 28px; }
.hh-blog__date { color: var(--primary); font-size: 0.78rem; font-weight: 600; margin-bottom: 10px; }
.hh-blog__body h3 { font-size: 1.05rem; font-weight: 800; color: var(--secondary); margin-bottom: 12px; line-height: 1.4; }
.hh-blog__body p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.hh-blog__link { color: var(--primary); font-size: 0.85rem; font-weight: 700; transition: gap var(--transition); }
.hh-blog__link:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.hh-contact { background: var(--gray-50); }
.hh-contact__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.hh-contact__img { position: relative; overflow: hidden; }
.hh-contact__img img { width: 100%; height: 100%; object-fit: cover; }
.hh-contact__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 48px;
}
.hh-contact__img-badge {
  background: rgba(28,28,30,0.9); backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary);
  padding: 20px 24px; border-radius: 0 8px 8px 0;
}
.hh-contact__img-badge strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.hh-contact__img-badge span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.hh-contact__form-wrap { padding: 80px 64px; }
.hh-contact__form-wrap h2 {
  font-size: 2rem; font-weight: 800; color: var(--secondary);
  margin-bottom: 12px; margin-top: 8px; line-height: 1.2;
}
.hh-contact__form-wrap > p { color: var(--gray-500); margin-bottom: 32px; }

/* FORM */
.hh-form { display: flex; flex-direction: column; gap: 16px; }
.hh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hh-form__field { display: flex; flex-direction: column; gap: 6px; }
.hh-form__field label { font-size: 0.8rem; font-weight: 700; color: var(--gray-700); letter-spacing: 0.03em; }
.hh-form__field input,
.hh-form__field select,
.hh-form__field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--secondary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: none;
}
.hh-form__field input:focus,
.hh-form__field select:focus,
.hh-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(241,134,55,0.1);
}
.hh-form__message {
  margin-top: 8px; font-size: 0.9rem; font-weight: 600;
  min-height: 24px; text-align: center;
}
.hh-form__message.success { color: #16a34a; }
.hh-form__message.error { color: #dc2626; }

/* ===== FOOTER ===== */
.hh-footer {
  background: var(--secondary); padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}
.hh-footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.hh-footer__brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 20px; max-width: 280px; }
.hh-footer__social {
  display: flex; gap: 12px; margin-top: 24px;
}
.hh-footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all var(--transition);
}
.hh-footer__social a:hover { border-color: var(--primary); color: var(--primary); }
.hh-footer__col { display: flex; flex-direction: column; gap: 12px; }
.hh-footer__col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.hh-footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.hh-footer__col a:hover { color: var(--primary); }
.hh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px; max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.hh-footer__bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.hh-footer__bottom a:hover { color: var(--primary); }
.hh-footer__bottom p { display: flex; gap: 12px; align-items: center; }

/* ===== WHATSAPP ===== */
.hh-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.hh-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hh-about__inner { grid-template-columns: 1fr; gap: 60px; }
  .hh-about__img-badge { display: none; }
  .hh-contact__inner { grid-template-columns: 1fr; }
  .hh-contact__img { min-height: 300px; }
  .hh-contact__form-wrap { padding: 60px 40px; }
  .hh-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hh-footer__brand { grid-column: span 2; }
  .hh-showcase__info { left: 24px; right: 24px; max-width: none; }
}

@media (max-width: 768px) {
  .hh-navbar__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(28,28,30,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .hh-navbar__links.is-open { display: flex; }
  .hh-navbar__links a { font-size: 1.2rem; }
  .hh-navbar__burger { display: flex; }
  .hh-navbar__cta .hh-btn:not(.hh-navbar__burger) { display: none; }
  .hh-hero__content { padding: 60px 24px; }
  .hh-hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hh-hero__scroll { padding: 20px 24px; }
  .hh-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .hh-gallery__item--wide { grid-column: span 2; }
  .hh-gallery__item--tall { grid-row: span 1; }
  .hh-showcase__slider { height: 400px; }
  .hh-showcase__info { bottom: 20px; padding: 20px 24px; }
  .hh-form__row { grid-template-columns: 1fr; }
  .hh-contact__form-wrap { padding: 40px 24px; }
  .hh-footer__inner { grid-template-columns: 1fr; }
  .hh-footer__brand { grid-column: span 1; }
  .hh-stats__item { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hh-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .hh-gallery__item--wide { grid-column: span 1; }
}
