/* ============================================
   FARMACIAS AMIGAS — style.css
   Brand-aligned design system
   Mobile-first responsive approach
   ============================================ */

/* ── CSS VARIABLES (from Brand Guide) ── */
:root {
  /* BRAND COLORS — Extracted from Farmacias Amigas Manual de Marca 2025 */
  --color-primary: #072BCA;
  --color-primary-dark: #001E60;
  --color-secondary: #FD9E02;
  --color-accent: #A9DDF7;
  --color-bg-light: #FAF8F5;
  --color-bg-dark: #001E60;
  --color-text-main: #1A1A2E;
  --color-text-muted: #5A5A72;
  --color-white: #FFFFFF;

  /* TYPOGRAPHY — Brand: Familjen Grotesk */
  --font-display: 'Familjen Grotesk', sans-serif;
  --font-body: 'Familjen Grotesk', sans-serif;

  /* TYPOGRAPHIC SCALE */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  /* SPACING */
  --section-padding: 96px 0;
  --container-max: 1200px;
  --border-radius-card: 16px;
  --border-radius-btn: 50px;

  /* SHADOWS */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);

  /* TRANSITIONS */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-main);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  display: inline-block;
  margin-bottom: 12px;
}

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(253, 158, 2, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 42px;
  width: auto;
  transition: opacity var(--transition-base);
}

.navbar-logo-light {
  display: block;
}

.navbar-logo-dark {
  display: none;
}

.navbar-links {
  display: none;
  gap: 32px;
  align-items: center;
}

.navbar-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.navbar.scrolled .navbar-logo-light {
  display: none;
}

.navbar.scrolled .navbar-logo-dark {
  display: block;
}

.navbar.scrolled .navbar-links a {
  color: var(--color-text-main);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--color-text-main);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--color-white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--color-white);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-white);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.55s; }

.mobile-menu a:hover {
  color: var(--color-secondary);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 43, 202, 0.85) 0%,
    rgba(0, 30, 96, 0.75) 100%
  );
  z-index: 1;
}

/* Decorative hand pattern */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.07;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.2s;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, var(--text-6xl));
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
  line-height: 1.05;
}

.hero-title .highlight {
  color: var(--color-secondary);
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
  line-height: 1.6;
}

.hero .btn-cta {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-indicator span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  animation: bounce 2s infinite;
}

.scroll-arrow svg {
  stroke: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MARQUEE TICKER ── */
.marquee {
  background: linear-gradient(90deg, var(--color-secondary), #FFB833, var(--color-secondary));
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-secondary), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-secondary), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(var(--text-sm), 2vw, var(--text-lg));
  font-weight: 700;
  color: var(--color-white);
  padding: 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── SECTION 02 — PRECIOS ── */
.precios {
  background: var(--color-bg-light);
}

.precios-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.precios-text {
  max-width: 560px;
}

.precios-text h2 {
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.precios-text p {
  margin-bottom: 28px;
  font-size: var(--text-lg);
}

.precios-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.precios-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.precios-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.precios-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-white);
  stroke-width: 3;
  fill: none;
}

.precios-feature span {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.5;
}

/* Visual card */
.precios-visual {
  width: 100%;
  max-width: 400px;
}

.precios-card {
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--border-radius-card);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.precios-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(253, 158, 2, 0.15);
  border-radius: 50%;
}

.precios-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(169, 221, 247, 0.1);
  border-radius: 50%;
}

.precios-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.precios-card-icon svg {
  width: 100%;
  height: 100%;
}

.precios-card h3 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.precios-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  position: relative;
  z-index: 1;
}

/* ── SECTION 03 — OFERTAS ── */
.ofertas {
  background: var(--color-primary);
  position: relative;
}

.ofertas-header {
  text-align: center;
  margin-bottom: 48px;
}

.ofertas-header .label {
  color: var(--color-secondary);
}

.ofertas-header h2 {
  color: var(--color-white);
}

.ofertas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.ofertas-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.ofertas-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.3);
}

.ofertas-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
}

.ofertas-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-secondary);
  fill: none;
}

.ofertas-card h3 {
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: 10px;
}

.ofertas-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

/* Banner strip */
.ofertas-banner {
  width: 100%;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ofertas-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SECTION 04 — NOSOTROS / LA ESQUINA ── */
.nosotros {
  background: var(--color-bg-light);
  overflow: hidden;
}

.nosotros-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nosotros-image {
  width: 100%;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 350px;
}

.nosotros-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.nosotros-image:hover img {
  transform: scale(1.02);
}

.nosotros-text {
  max-width: 560px;
}

.nosotros-text h2 {
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}

.nosotros-text p {
  font-size: var(--text-lg);
  margin-bottom: 32px;
}

.nosotros-separator {
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-bottom: 32px;
}

.nosotros-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ── SECTION 05 — APOYO HUMANO ── */
.apoyo {
  background: var(--color-bg-light);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Subtle grain texture */
.apoyo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.apoyo-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.apoyo-isotype {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.apoyo-isotype img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apoyo h2 {
  color: var(--color-primary-dark);
  margin-bottom: 24px;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  line-height: 1.2;
}

.apoyo .pull-quote {
  font-size: clamp(var(--text-base), 2vw, 1.3rem);
  color: var(--color-text-muted);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* Decorative divider between apoyo and previous section */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(7, 43, 202, 0.12) 50%,
    transparent 100%
  );
  margin: 0 auto;
}

/* ── SECTION 06 — UBICACIÓN ── */
.ubicacion {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.ubicacion-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ubicacion-info .label {
  color: var(--color-secondary);
}

.ubicacion-info h2 {
  color: var(--color-white);
  margin-bottom: 28px;
}

.ubicacion-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ubicacion-detail-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.ubicacion-detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-secondary);
  fill: none;
}

.ubicacion-detail p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  line-height: 1.6;
}

.ubicacion-info .btn-cta {
  margin-top: 12px;
}

.map-container {
  width: 100%;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ── FOOTER ── */
.footer {
  background: #000D2B;
  color: var(--color-white);
  position: relative;
}

/* SVG wave separator */
.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0 32px;
  text-align: center;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 16px;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin: 0 auto;
}

.footer-nav h4 {
  color: var(--color-white);
  font-size: var(--text-base);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-nav a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--color-secondary);
}

.footer-contact h4 {
  color: var(--color-white);
  font-size: var(--text-base);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-secondary);
  fill: none;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

/* ── TABLET BREAKPOINT ── */
@media (min-width: 768px) {
  .section {
    padding: var(--section-padding);
  }

  .ofertas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nosotros-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .nosotros-image {
    width: 50%;
    flex-shrink: 0;
    min-height: 400px;
  }

  .nosotros-text {
    flex: 1;
  }

  .ubicacion-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .ubicacion-info {
    width: 40%;
    flex-shrink: 0;
  }

  .map-container {
    flex: 1;
    min-height: 450px;
  }

  .map-container iframe {
    height: 450px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin: 0 0 16px;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* ── DESKTOP BREAKPOINT ── */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .navbar-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-logo {
    height: 80px;
  }

  .precios-grid {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .precios-text {
    flex: 1;
  }

  .precios-visual {
    flex-shrink: 0;
    width: 380px;
  }

  .nosotros-image {
    min-height: 500px;
  }

  .map-container iframe {
    height: 500px;
  }
}

/* ── DESKTOP XL ── */
@media (min-width: 1280px) {
  h1 { font-size: var(--text-6xl); }

  .hero-logo {
    height: 90px;
  }

  .precios-visual {
    width: 420px;
  }
}
