/* ============================================
   JK Enterprise - Sitio Corporativo
   Brand: Navy #0D2B4E / Orange #E87722
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0D2B4E;
  --navy-deep: #08203D;
  --navy-light: #1a3d63;
  --orange: #E87722;
  --orange-soft: #f4a460;
  --orange-light: #fef3e8;
  --white: #ffffff;
  --cream: #fdfaf6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(13, 43, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 43, 78, 0.1);
  --shadow-lg: 0 20px 50px rgba(13, 43, 78, 0.15);

  --radius: 8px;
  --radius-lg: 16px;

  --max-width: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

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

/* ============== Layout ============== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ============== Top Bar ============== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.topbar a { transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar .right { display: flex; gap: 24px; }
.topbar .icon { display: inline-flex; gap: 6px; align-items: center; }

@media (max-width: 768px) {
  .topbar .left { display: none; }
  .topbar .right { width: 100%; justify-content: space-around; gap: 12px; font-size: 12px; }
}

/* ============== Header / Navigation ============== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { width: 48px; height: 48px; }
.brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
}
.brand-text .jk { color: var(--orange); }
.brand-text .ent { color: var(--navy); }
.brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--navy); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #d66a18; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }

/* ============== Typography helpers ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
}

h1.display, .display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============== Hero Section ============== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #08203D 0%, #0D2B4E 60%, #1a3d63 100%);
  color: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0; right: -100px;
  width: 700px;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 28px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats .stat .label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-card-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.hero-card-list .check {
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  margin-top: 1px;
}

/* ============== Page Hero (interior pages) ============== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image: 
    linear-gradient(60deg, transparent 48%, rgba(232,119,34,0.06) 49%, rgba(232,119,34,0.06) 51%, transparent 52%);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ============== Divisions Cards ============== */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 1024px) { .divisions-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .divisions-grid { grid-template-columns: 1fr !important; } }

.division-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.division-card:hover::before { transform: scaleX(1); }

.division-card .icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
  transition: all 0.3s;
}
.division-card:hover .icon { background: var(--orange); color: var(--white); }
.division-card .icon svg { width: 28px; height: 28px; }

.division-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.division-card .subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}
.division-card p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}
.division-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.division-card ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.division-card ul li:last-child { border: none; }
.division-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.division-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.division-card .card-link:hover { gap: 14px; color: var(--orange); }

/* ============== About / Why Us ============== */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.75); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

.feature-list { list-style: none; margin-top: 32px; }
.feature-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list li:last-child { border: none; }
.feature-list .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  font-weight: 600;
  flex-shrink: 0;
  width: 48px;
}
.feature-list h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}
.feature-list p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.image-stack {
  position: relative;
  height: 480px;
}
.image-stack .img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-stack .img-main img { width: 60%; opacity: 0.95; }
.image-stack .img-accent {
  position: absolute;
  bottom: -30px; right: 0;
  width: 240px;
  height: 240px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.image-stack .img-accent .num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}
.image-stack .img-accent .label {
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ============== Stats Bar ============== */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) 33%, transparent 33%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat-item .stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ============== Testimonials ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--gray-100);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}
.testimonial .stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.testimonial-author .info h5 {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-author .info span {
  font-size: 12.5px;
  color: var(--gray-500);
}

/* ============== CTA Strip ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #d66a18 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  max-width: 640px;
}
.cta-strip .btn-secondary { background: var(--white); color: var(--navy); }
.cta-strip .btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ============== Form ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  color: var(--gray-900);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============== Footer ============== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand .text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.footer-brand .text .jk { color: var(--orange); }
.footer p.about {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact .item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact .item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }

.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-row a:hover { background: var(--orange); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============== WhatsApp Floating Button ============== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============== Service Detail (Servicios page) ============== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block:last-child { border-bottom: none; }
@media (max-width: 900px) { .service-block { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; } }

.service-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.service-visual.alt { background: linear-gradient(135deg, var(--orange) 0%, #d66a18 100%); }
.service-visual.cream { background: linear-gradient(135deg, var(--cream) 0%, var(--orange-light) 100%); }

/* Photo treatment */
.service-visual.photo { background: var(--navy); }
.service-visual.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-visual.photo:hover img { transform: scale(1.04); }
.service-visual.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 43, 78, 0.35) 0%, rgba(232, 119, 34, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}
.service-visual.photo:hover::after { opacity: 0.5; }
.service-visual.photo::before {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 48px;
  height: 4px;
  background: var(--orange);
  z-index: 3;
  border: none;
  border-radius: 0;
  transform: none;
  top: auto;
}

.service-visual:not(.photo)::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service-visual:not(.photo)::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 380px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service-visual.cream:not(.photo)::before, .service-visual.cream:not(.photo)::after {
  border-color: rgba(232, 119, 34, 0.2);
}
.service-visual:not(.photo) svg {
  width: 100px; height: 100px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.service-visual.cream:not(.photo) svg { color: var(--orange); }

.service-content .service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-content > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-content .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.service-content .service-tags span {
  background: var(--orange-light);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ============== Blog Cards ============== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

.blog-card .img-area {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card .img-area.alt { background: linear-gradient(135deg, var(--orange) 0%, #d66a18 100%); }
.blog-card .img-area.cream { background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 100%); }
.blog-card .img-area svg { width: 64px; height: 64px; color: rgba(255,255,255,0.9); }
.blog-card .img-area.cream svg { color: var(--orange); }

.blog-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.blog-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}
.blog-card .read-more:hover { gap: 14px; color: var(--orange); }

/* ============== Contact Page ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; }
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

/* ============== Animations ============== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }
