/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --color-primary: #4ec3e8;
  --color-primary-dark: #2ea8d0;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray-mid: #888888;
  --color-gray-dark: #333333;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
  --container-max: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { color: var(--color-gray-dark); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header p { margin-top: 1rem; }


/* ===========================
   UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(78, 195, 232, 0.4);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 28px rgba(78, 195, 232, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn-full { width: 100%; justify-content: center; }



/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll[data-direction="left"] { transform: translateX(-40px); }
.animate-on-scroll[data-direction="right"] { transform: translateX(40px); }

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}


/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img { height: 80px; width: auto; }

@media (min-width: 900px) {
  .logo-brand {
    transform: scale(1.45);
    transform-origin: left center;
    margin-right: 1.5rem;
  }
}
.logo-fallback {
  display: inline-flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-fallback .logo-accent { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.nav-cta {
  background: var(--color-primary);
  color: var(--color-white);
  margin-left: 0.5rem;
  font-weight: 600;
}
.nav-link.nav-cta:hover { background: var(--color-primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a3a;
  transition: transform 8s ease;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-video--mobile { display: none; }

@media (max-width: 767px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 60%, rgba(78,195,232,0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-title { color: var(--color-white); margin-bottom: 1.25rem; }

.hero-line {
  display: block;
  animation: fadeUp 0.8s ease both;
}
.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-accent { color: var(--color-primary); }

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.25rem;
  animation: fadeUp 0.8s ease 0.65s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation: bounce 2s infinite 1.5s;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--color-white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ===========================
   ABOUT / NOSOTROS
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(78, 195, 232, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; stroke: var(--color-primary); }
.feature-item strong { display: block; font-weight: 600; font-size: 0.9rem; }
.feature-item span { font-size: 0.82rem; color: var(--color-gray-mid); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-gray-light);
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}
.about-img-badge strong { display: block; font-size: 0.9rem; }
.about-img-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }


/* ===========================
   SERVICES
   =========================== */
.services { background: var(--color-gray-light); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(78, 195, 232, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card-icon svg { width: 26px; height: 26px; stroke: var(--color-primary); }

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.services-banner {
  background: var(--color-primary);
  margin-top: 3rem;
  padding: 1.5rem 0;
}
.services-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.services-banner svg { stroke: var(--color-white); flex-shrink: 0; }
.services-banner p {
  color: var(--color-white);
  font-size: 1rem;
  margin: 0;
}
.services-banner strong { font-weight: 700; }


/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--color-gray-light);
  min-height: 200px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-item.img-placeholder {
  background: var(--color-gray-light);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px dashed #ddd;
}
.gallery-item.img-placeholder img { display: none; }
.gallery-item.img-placeholder::before {
  content: '📷';
  font-size: 2rem;
}
.gallery-item.img-placeholder::after {
  content: 'Tu foto aquí';
  color: var(--color-gray-mid);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.gallery-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  margin: 0;
}


/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.lightbox-close:hover { color: var(--color-white); background: rgba(255,255,255,0.1); }


/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
}
.contact-item svg { stroke: var(--color-primary); flex-shrink: 0; }
.contact-item a:hover { color: var(--color-primary); }

.social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-gray-dark);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.social-link:hover { color: var(--color-primary); }

/* Form */
.contact-form-wrapper {
  background: var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-black);
}
.required { color: var(--color-primary); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(78, 195, 232, 0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }

.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-gray-mid);
  margin-top: 0.3rem;
}
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  min-height: 1em;
}

/* Submit button states */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .btn-text { display: none; }
.btn.loading .btn-spinner { display: block; }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Success card */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon { margin-bottom: 1rem; }
.success-icon svg { stroke: var(--color-primary); margin: 0 auto; }
.form-success h3 { margin-bottom: 0.5rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #e53e3e;
  color: var(--color-white);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-black);
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo .logo-fallback { color: var(--color-white); }
.footer-copy { font-size: 0.85rem; }

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--color-primary); }


/* ===========================
   WHATSAPP BUTTON
   =========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  z-index: 9500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}
.whatsapp-btn.visible {
  animation: waBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.5s ease-out infinite 2s;
}

.whatsapp-tooltip {
  position: absolute;
  right: 110%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waBounceIn {
  0%   { opacity: 0; transform: translateY(30px) scale(0.8); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.08); }
  80%  { transform: translateY(4px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* ===========================
   RESPONSIVE — TABLET 600px+
   =========================== */
/* Panel móvil — fuera del navbar para evitar problemas con backdrop-filter */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(80vw, 320px);
  background: #111111;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 2rem 2rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}
.nav-mobile-panel.open { transform: translateX(0); }
.nav-mobile-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; width: 100%; }
.nav-mobile-panel .nav-link { width: 100%; padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: var(--radius); display: block; }
.nav-mobile-panel .nav-link.nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; display: block; }

.mobile-panel-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.mobile-panel-close:hover { color: var(--color-white); background: rgba(255,255,255,0.1); }

@media (max-width: 899px) {
  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-mobile-panel { display: flex; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-features { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 599px) {
  .section { padding: 4rem 0; }

  .hero-actions { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }

  .services-banner .container { flex-direction: column; }
}

/* ===========================
   LARGE SCREENS 1400px+
   =========================== */
@media (min-width: 1400px) {
  :root { --container-max: 1280px; }
  h1 { font-size: 6rem; }
  .section { padding: 8rem 0; }
}
