/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens / CSS Variables --- */
:root {
  --color-primary: #082158;      /* Deep Dark Blue */
  --color-primary-light: #0d348a;
  --color-secondary: #007bff;    /* Electric Blue */
  --color-secondary-dark: #0056b3;
  --color-accent: #00d2ff;       /* Light Ice Blue */
  --color-bg-dark: #030a1c;      /* Night Sky Background */
  --color-bg-light: #f4f8fc;     /* Cold White */
  --color-card-bg: rgba(255, 255, 255, 0.85);
  --color-card-bg-dark: rgba(8, 33, 88, 0.25);
  --color-text-dark: #1e293b;    /* Slate Dark */
  --color-text-light: #f8fafc;   /* Slate Light */
  --color-text-muted: #64748b;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.glass-card-dark {
  background: rgba(8, 33, 88, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--color-text-light);
}

.section-padding {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 42px;
}

.section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
}

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

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

.btn-white {
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Floating WhatsApp Button (regla 07) --- */
.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right, 0px));
  bottom: max(22px, calc(22px + env(safe-area-inset-bottom, 0px)));
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
}

.whatsapp-float:hover {
  transform: translateZ(0) translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

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

.logo-nav-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-nav-container img {
  height: 60px;
  width: auto;
  transition: var(--transition-normal);
  filter: brightness(0) invert(1); /* White logo by default for dark background */
}

header.scrolled .logo-nav-container img,
header.mobile-active .logo-nav-container img {
  height: 50px;
  filter: none; /* Full brand colors on light background */
}

.logo-text {
  font-family: var(--font-title);
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 800;
  font-size: 1.4rem;
  color: white; /* White text by default */
  line-height: 1.1;
  transition: var(--transition-normal);
}

header.scrolled .logo-main,
header.mobile-active .logo-main {
  color: var(--color-primary); /* Dark text when scrolled or mobile menu active */
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--color-accent); /* Light blue accent by default */
  font-weight: 600;
  transition: var(--transition-normal);
}

header.scrolled .logo-sub,
header.mobile-active .logo-sub {
  color: var(--color-secondary); /* Electric blue when scrolled or mobile menu active */
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85); /* Light links by default */
  position: relative;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: white;
}

header.scrolled .nav-links a,
header.mobile-active .nav-links a {
  color: var(--color-primary); /* Dark links when scrolled or mobile menu active */
}

header.scrolled .nav-links a:hover,
header.mobile-active .nav-links a:hover {
  color: var(--color-secondary);
}

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

header.scrolled .nav-links a::after,
header.mobile-active .nav-links a::after {
  background: var(--color-secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: var(--border-radius-sm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white; /* White toggle lines by default */
  border-radius: 3px;
  transition: var(--transition-normal);
}

header.scrolled .menu-toggle span,
header.mobile-active .menu-toggle span {
  background-color: var(--color-primary); /* Dark toggle lines when scrolled or mobile menu active */
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 48px;
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100%;
  background: #020817;
  color: white;
}

.hero-bg-photo {
  position: absolute;
  inset: -8%;
  background-image: url('/preview/gonzales-denis/preview/gonzales-denis/assets/gallery/galeria-01.webp');
  background-size: cover;
  background-position: center 35%;
  filter: blur(16px) brightness(0.5) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 8, 23, 0.94) 0%, rgba(8, 33, 88, 0.82) 42%, rgba(8, 33, 88, 0.45) 72%, rgba(13, 52, 138, 0.35) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Animated background elements */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.snowflake-bg {
  position: absolute;
  fill: rgba(255, 255, 255, 0.05);
  animation: float-snow 20s linear infinite;
}

.snowflake-bg.s1 { top: 20%; left: 10%; width: 80px; animation-duration: 25s; }
.snowflake-bg.s2 { top: 60%; left: 80%; width: 120px; animation-duration: 35s; }
.snowflake-bg.s3 { top: 75%; left: 20%; width: 60px; animation-duration: 18s; }
.snowflake-bg.s4 { top: 15%; left: 85%; width: 90px; animation-duration: 28s; }

@keyframes float-snow {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-content {
  max-width: 600px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
  color: var(--color-accent);
}

.hero-badge svg {
  animation: spin 6s linear infinite;
}

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

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  text-wrap: balance;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  max-width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

/* Desktop bento: 1 grande izq + 3 apiladas der */
.hero-showcase--desktop {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 100%;
  height: clamp(240px, 32vw, 340px);
  min-height: 0;
}

.hero-showcase--mobile {
  display: none;
}

.hero-bento-item {
  position: relative;
  display: block;
  min-height: 0;
  min-width: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  background: #0a1628;
}

.hero-bento-item:hover {
  box-shadow: 0 16px 40px rgba(0, 210, 255, 0.15);
}

@media (hover: hover) {
  .hero-bento-item:hover {
    transform: scale(1.02);
  }
}

.hero-bento-item--main {
  grid-row: 1 / span 3;
  border-width: 3px;
}

.hero-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Mobile featured + strip */
.hero-featured {
  position: relative;
  display: block;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
  text-decoration: none;
  background: #0a1628;
}

.hero-strip {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  max-width: 100%;
}

.hero-strip::-webkit-scrollbar {
  display: none;
}

.hero-strip-item {
  flex: 0 0 104px;
  width: 104px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  scroll-snap-align: start;
  position: relative;
  text-decoration: none;
  background: #0a1628;
}

.hero-strip-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-strip-item--video .hero-strip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 33, 88, 0.45);
  color: white;
}

/* --- Features Section --- */
.features {
  background-color: white;
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
}

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

.feature-card {
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Services Section --- */
.services {
  background-color: var(--color-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  padding: 6px 14px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  letter-spacing: 1px;
}

.service-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-list svg {
  color: #10b981; /* Success Green */
  flex-shrink: 0;
}

.service-action {
  margin-top: auto;
}

/* --- Quote Calculator Section --- */
.calculator-section {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #ffffff 100%);
  position: relative;
}

.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.form-control {
  padding: 14px;
  border: 2px solid rgba(8, 33, 88, 0.1);
  background: white;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.15);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: white;
  border: 2px solid rgba(8, 33, 88, 0.1);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.calc-option-btn svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.calc-option-btn.active {
  border-color: var(--color-secondary);
  background: rgba(0, 123, 255, 0.05);
}

.calc-option-btn.active svg {
  color: var(--color-secondary);
  transform: scale(1.1);
}

.calc-option-btn span {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
}

.calc-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
}

.calc-summary::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.summary-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.summary-row span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.summary-row span:last-child {
  font-weight: 600;
}

.price-estimate {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  margin-top: auto;
}

.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
}

.price-value {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 4px;
}

.price-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* --- Process Section --- */
.process-section {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, white 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.process-step {
  position: relative;
  padding: 28px 22px 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.process-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.7;
}

.process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.12) 0%, rgba(0, 210, 255, 0.12) 100%);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.process-cta {
  text-align: center;
}

/* --- Gallery --- */
.gallery {
  background-color: white;
}

.gallery-subtitle {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 14px;
}

.gallery-carousel-wrap {
  position: relative;
  margin-bottom: 8px;
}

.gallery-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  height: 320px;
  border: none;
  padding: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--color-primary);
  text-align: left;
  min-width: 0;
}

.gallery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.gallery-carousel-btn--prev {
  left: -8px;
}

.gallery-carousel-btn--next {
  right: -8px;
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(8, 33, 88, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.gallery-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.gallery-actions .btn {
  min-width: 200px;
}

.gallery-item {
  position: relative;
  display: block;
  height: 260px;
  border: none;
  padding: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--color-primary);
  text-align: left;
  min-width: 0;
}

.gallery-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-media {
  transform: scale(1.06);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 33, 88, 0.82) 0%, rgba(0, 0, 0, 0) 38%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-media-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transform: scale(1);
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-media-icon {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: rgba(8, 33, 88, 0.72);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px 16px;
  color: white;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-category {
  display: none;
}

.gallery-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-cta-wrap {
  text-align: center;
}

.gallery-error {
  text-align: center;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 33, 88, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  max-width: min(960px, 100%);
  width: 100%;
  text-align: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 16px;
  color: white;
}

.lightbox-category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.lightbox-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
}

.lightbox-prev {
  left: max(12px, env(safe-area-inset-left));
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: max(12px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--color-bg-light);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(8, 33, 88, 0.08);
  border-radius: var(--border-radius-sm);
  background: white;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.faq-header:hover {
  background: rgba(0, 123, 255, 0.02);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  color: var(--color-secondary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-content p {
  padding-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
  color: var(--color-secondary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 500px; /* arbitrary high number for anim */
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- Contact & Location Section --- */
.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(8, 33, 88, 0.08);
  background: white;
}

.contact-info {
  padding: 0;
  gap: 0;
}

.contact-info-header {
  padding: 28px 28px 0;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  margin: 8px 0 10px;
  color: var(--color-primary);
}

.contact-info-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-info-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 24px 28px;
}

.contact-info-footer {
  padding: 0 28px 28px;
  margin-top: auto;
}

.contact-info-footer .btn,
.map-info-box .btn {
  width: 100%;
  min-height: 48px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.08);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-details p, .contact-details a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--color-secondary);
}

.work-hours {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid rgba(8, 33, 88, 0.08);
  padding-top: 20px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.hours-row span:last-child {
  color: var(--color-text-muted);
}

/* Map card */
.map-container {
  padding: 0;
  position: relative;
}

.map-iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  display: block;
}

.map-info-box {
  flex-shrink: 0;
  padding: 20px 24px;
  background: var(--color-bg-light);
  border-top: 1px solid rgba(8, 33, 88, 0.08);
}

.map-info-box h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.map-info-box p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --- Footer --- */
footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 80px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo-main {
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-title);
  color: white;
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .features-grid {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero {
    min-height: auto;
    padding: calc(var(--header-offset) + 16px) 0 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calc-summary {
    min-height: 250px;
  }
  .gallery-grid-compact {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .hero-showcase--mobile {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    max-width: 100%;
    width: 100%;
  }

  .hero-featured {
    aspect-ratio: 16 / 10;
    max-height: min(52vw, 240px);
  }

  .hero-trust {
    justify-content: center;
    gap: 12px 20px;
  }

  .trust-item {
    flex: 1 1 calc(33% - 16px);
    min-width: 90px;
    align-items: center;
  }

  .hero-grid {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .gallery-carousel-slide {
    flex: 0 0 calc(50% - 6px);
    height: 340px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    padding: 22px 18px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: start;
  }

  .process-icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 48px;
    height: 48px;
  }

  .process-step h3 {
    margin-bottom: 0;
    align-self: end;
  }

  .process-num {
    top: 12px;
    right: 12px;
  }

  .container {
    padding: 0 10px;
  }

  nav {
    display: none; /* Mobile menu hidden by default */
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Menu Styles when active: Slick side drawer layout */
  header.mobile-active nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 100px 24px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    animation: slideInDrawer 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  @keyframes slideInDrawer {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  header.mobile-active .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
  }
  
  header.mobile-active .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(8, 33, 88, 0.05);
  }
  
  header.mobile-active .nav-btn {
    width: 100%;
    margin-top: 30px;
    padding: 14px;
    font-size: 1rem;
  }
  
  header.mobile-active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  header.mobile-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  header.mobile-active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Form & Interactive elements optimized for touch and iOS zoom prevention */
  .form-control, .btn, .calc-option-btn, select {
    min-height: 48px;
    font-size: 16px !important; /* Minimum 16px to prevent iOS auto-zoom */
  }

  .section-padding {
    padding: 48px 0;
  }

  .gallery-carousel-wrap {
    margin-inline: -10px;
    padding-inline: 10px;
  }

  .gallery-carousel-btn--prev {
    left: 4px;
  }

  .gallery-carousel-btn--next {
    right: 4px;
  }

  .gallery-carousel-slide {
    flex: 0 0 100%;
    height: 280px;
  }

  .gallery-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-carousel-btn {
    display: none;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-actions {
    flex-direction: column;
  }

  .gallery-actions .btn {
    width: 100%;
    min-width: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 7vw, 2.1rem);
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .trust-item {
    flex: none;
    width: 100%;
    align-items: center;
  }
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
  .calculator-wrapper {
    padding: 20px 14px;
  }
}

/* --- Trust band --- */
.trust-band {
  background: var(--color-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.trust-band-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-band-inner svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* --- Why section --- */
.why-section {
  background: var(--color-bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
}

.why-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Footer credit (regla 02) --- */
.footer-credit {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
}

.footer-credit a:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(24px, calc(20px + env(safe-area-inset-bottom, 0px)));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}

/* --- Responsive mobile safe (regla 08) --- */
:root {
  --header-offset: calc(5rem + env(safe-area-inset-top, 0px));
}

html {
  scroll-padding-top: var(--header-offset);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.container {
  min-width: 0;
}

header {
  padding-top: env(safe-area-inset-top, 0px);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    height: auto;
    overflow-x: clip;
    align-items: flex-start;
  }

  .hero-bg-photo {
    inset: 0;
    transform: scale(1.04);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-wrap: wrap;
  }
}
