:root {
  --blue1: #1e3a8a;
  --blue2: #2563eb;
  --blue3: #60a5fa;
  --text: #111827;
  --muted: #6b7280;
  --ring: #d1d5db;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5ff 40%, #ffffff 100%);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--blue1);
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.page {
  padding-top: 96px;
}

section {
  padding: 80px 0;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  inset: 30px 10% auto;
  height: 1px;
  background: rgba(15, 23, 42, 0.04);
  pointer-events: none;
}

.section-accent::after,
.section-muted::after,
.section-soft::after {
  display: none;
}

.section-muted {
  background: #f9fafb;
}

.section-accent {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(96, 165, 250, 0.18));
}

.section-soft {
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.05);
}

.section-faq {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fbff 55%, #ffffff 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-faq::before,
.section-faq::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  filter: blur(18px);
  opacity: 0.4;
  z-index: 0;
}

.section-faq::before {
  top: -120px;
  right: -80px;
}

.section-faq::after {
  bottom: -140px;
  left: -90px;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-head .title {
  margin-bottom: 12px;
}

.faq-head .lead {
  color: #475467;
}

.faq-accordion {
  margin-top: 32px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-index {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #1d4ed8;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #475467;
  font-size: 16px;
  line-height: 1.5;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 24px;
}

.faq-item.open .faq-question {
  color: #1d4ed8;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-item.open .faq-answer p {
  padding-top: 8px;
}

@media (max-width: 640px) {
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question-text {
    align-items: flex-start;
  }

.faq-answer {
  padding: 0 22px;
  }
}

.section-contact {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 60%, #ffffff 100%);
  padding: 90px 0;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.section-contact::before,
.section-contact::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.4), transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}

.section-contact::before {
  top: -60px;
  left: 5%;
}

.section-contact::after {
  bottom: -120px;
  right: 0;
}

.services-pill-light {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

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

.contact-info .title {
  color: #0f172a;
  margin: 12px 0 14px;
}

.contact-info .lead {
  color: #475467;
  max-width: 540px;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-weight: 600;
  margin: 26px 0 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  }
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
  color: #0f172a;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.07);
}

.contact-points span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #0b0f25, #111c44);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 65%);
  filter: blur(12px);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero-copy h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 16px 0 10px;
}

.contact-badges {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-weight: 600;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.contact-hero-highlights article {
  border-radius: 22px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-hero-highlights span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5f5;
}

.contact-hero-highlights strong {
  font-size: 20px;
  color: #fff;
  word-break: break-word;
}

.contact-hero-highlights small {
  color: #cbd5f5;
}

.contact-highlight-wide {
  grid-column: span 2;
}

@media (max-width: 820px) {
  .contact-highlight-wide {
    grid-column: auto;
  }
}

.contact-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.08);
}

.contact-panel .title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 6px 0 12px;
}

.contact-highlight-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
  color: #475467;
}

.contact-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-highlight-list li::before {
  content: "•";
  color: #1d4ed8;
  font-weight: 700;
}

.contact-form-card {
  background: linear-gradient(180deg, #fbfbff 0%, #f2f6ff 100%);
  border-radius: 32px;
  padding: 34px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

.contact-form-card .contact-form {
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
}

.contact-form-card .contact-form .form-grid {
  gap: 16px;
}

.contact-form-card .contact-form input,
.contact-form-card .contact-form textarea {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f8fafc;
}

.contact-form-card .contact-form input:focus,
.contact-form-card .contact-form textarea:focus {
  background: #fff;
}

.contact-form-card .contact-form button {
  border-radius: 18px;
  font-size: 17px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.contact-trust {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px dashed rgba(59, 130, 246, 0.35);
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.contact-trust span {
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  min-width: 220px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.contact-chip strong {
  display: block;
  font-size: 16px;
}

.contact-chip small {
  color: #475467;
}

.contact-form-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}

.card.contact-form {
  display: block;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  padding: 26px;
  color: #0f172a;
}

.contact-form .form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.contact-form .form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(249, 250, 251, 0.85);
  color: #0f172a;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
  outline: none;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
  font-size: 16px;
  padding: 14px;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
}

.contact-form .alert {
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.contact-form .alert-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #036949;
}

.contact-form .alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #b91c1c;
  list-style: disc;
  padding-left: 32px;
}

.contact-form .alert-error li {
  margin: 4px 0;
}

.contact-trust-badge {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #475467;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-trust-badge span {
  font-size: 24px;
}

.contact-trust-badge strong {
  display: block;
  color: #0f172a;
}

.contact-trust-badge p {
  margin: 0;
  color: #475467;
  font-size: 15px;
}

@media (max-width: 768px) {
  .section-contact {
    padding: 80px 0;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-chip {
    width: 100%;
  }

  .whatsapp-quote-form .form-row {
    flex-direction: column;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(34, 197, 94, 0.35);
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  animation: pulseDot 2.5s ease-in-out infinite;
}

.whatsapp-icon svg {
  width: 38px;
  height: 38px;
}

.whatsapp-icon .wa-circle {
  fill: #25d366;
}

.whatsapp-icon .wa-glyph {
  fill: #fff;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 14px;
}

.whatsapp-text strong {
  font-size: 15px;
}

.whatsapp-text small {
  font-weight: 500;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .whatsapp-text {
    display: none;
  }
}

.services-hero.minimal {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
  color: #f8fafc;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.services-hero-photo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.5);
  object-fit: cover;
}

.services-pillars {
  background: #f8fafc;
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillars-grid article {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
}

.pillars-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pillars-grid div {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillars-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: #475467;
}

.pillars-grid li::before {
  content: '•';
  color: #1d4ed8;
  margin-right: 6px;
}

.services-gallery {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  padding: 16px;
  background: #fff;
  font-size: 15px;
  color: #475467;
}

.services-beneficios.compact {
  padding: 70px 0;
}

.feature-card.pro {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.feature-card-icon {
  position: relative;
  padding: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card-icon h3 {
  margin-top: 0;
}

.services-cta-final .callout.pro {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.9));
  color: #fff;
}

@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }
}
.quote-page {
  background: linear-gradient(180deg, #040c1a 0%, #0f172a 60%, #111827 100%);
  min-height: 100vh;
  color: #f8fafc;
}

.quote-hero-modern {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.quote-hero-modern::after {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 65%);
  filter: blur(10px);
}

.quote-hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.quote-hero-copy h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 18px 0 10px;
}

.quote-hero-copy .lead {
  color: rgba(248, 250, 252, 0.85);
}

.quote-hero-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  color: rgba(248, 250, 252, 0.9);
}

.quote-hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-hero-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
}

.quote-hero-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 35px 70px rgba(2, 6, 23, 0.7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 28px;
  gap: 18px;
}

.quote-hero-card strong {
  display: block;
  font-size: 32px;
  color: #38bdf8;
}

.quote-hero-card span {
  color: rgba(226, 232, 240, 0.8);
  font-size: 14px;
}

.quote-form-section {
  padding: 50px 0 100px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.quote-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
  color: #475467;
}

.quote-info-card {
  background: rgba(15, 23, 42, 0.65);
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 32px;
  color: rgba(248, 250, 252, 0.9);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.6);
}

.quote-info-card .lead {
  color: rgba(248, 250, 252, 0.8);
}

.quote-info-card .quote-list {
  color: rgba(248, 250, 252, 0.85);
}

.quote-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-form-card .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form-card label {
  font-weight: 600;
  color: #0f172a;
}

.quote-form-card input,
.quote-form-card textarea {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 12px 14px;
  font-size: 16px;
  background: rgba(249, 250, 251, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-card input:focus,
.quote-form-card textarea:focus {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  outline: none;
  background: #fff;
}

.quote-form-card .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.quote-help {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .quote-form-card .form-grid {
    grid-template-columns: 1fr;
  }
}


.home-services {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.2), rgba(255, 255, 255, 0.9));
}

.sindico-highlight {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.45), rgba(191, 219, 254, 0.35));
}

.services-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.sindico-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.sindico-photo-wrap {
  position: relative;
}

.sindico-photo-frame {
  border-radius: 32px;
  perspective: 1600px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 520px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.2);
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.flip-front .sindico-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.flip-back {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(37, 99, 235, 0.5));
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transform: rotateY(180deg);
}

.flip-back-content {
  text-align: center;
  max-width: 280px;
}

.flip-back-content strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}

.sindico-stats {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.4);
}

.sindico-stats strong {
  display: block;
  font-size: 32px;
}

.sindico-badge {
  position: absolute;
  right: -30px;
  bottom: -30px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
  display: flex;
  gap: 12px;
  align-items: center;
}

.sindico-badge span {
  font-size: 28px;
}

.sindico-badge strong {
  display: block;
  color: #0f172a;
}

.sindico-badge small {
  color: #475467;
}

.sindico-content .title {
  margin: 16px 0;
}

.sindico-name {
  color: #1d4ed8;
}

.sindico-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
  color: #475467;
}

.sindico-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.sindico-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 600;
}

.title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 12px 0 0;
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue1);
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

  .page {
    padding-top: 80px;
  }

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

  .sindico-photo {
    height: 380px;
  }

  .sindico-badge {
    position: static;
    margin-top: 16px;
    width: auto;
  }
}

.card {
  background: #fff;
  border: 1px solid #eef2ff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(2, 6, 23, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.bluechip {
  position: absolute;
  right: -20px;
  bottom: -20px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--blue2), var(--blue3));
  color: #fff;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.35);
}

.history-visual {
  text-align: center;
}

.history-logo {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  background: #081237;
  border-radius: 34px;
  border: 5px solid #ebc203;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(8, 18, 55, 0.35);
}

.history-logo img {
  width: 82%;
  height: auto;
}

.hero {
  padding-top: 86px;
  padding-bottom: 60px;
}

.carousel {
  position: relative;
  height: 68vh;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 74px;
    padding-bottom: 50px;
  }

  .carousel {
    height: 55vh;
    min-height: 360px;
  }

  .home-services {
    padding: 70px 0;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

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

  .services-photo {
    height: 260px;
  }

  .services-note {
    position: static;
    margin-top: 18px;
  }
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 7, 18, 0.65), rgba(3, 7, 18, 0.35));
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 10px;
}

.slide p {
  color: #eef2ff;
  font-size: clamp(16px, 2vw, 20px);
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.btn-white {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-blue {
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  color: #fff;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  padding: 14px 18px;
  transition: opacity 0.2s ease;
}

.btn-blue:disabled {
  opacity: 0.6;
}

.btn-outline {
  border: 1px solid #dbeafe;
  color: var(--blue1);
  background: #fff;
}

.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.ctrl.left {
  left: 16px;
}

.ctrl.right {
  right: 16px;
}

.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
}

.dot.active {
  background: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue1);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e0e7ff;
  background: #f8fafc;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 32px;
  color: var(--blue1);
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.feature-card {
  border-radius: 18px;
  border: 1px solid #e0e7ff;
  padding: 20px;
  background: #fff;
}

.alert {
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  list-style: disc;
  padding-left: 36px;
}

.alert-error li {
  margin: 4px 0;
}

.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.18));
}

.page-hero .title {
  font-size: clamp(32px, 4vw, 56px);
}

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

.section-header .lead {
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
  margin: 12px 0 8px;
}

.service-card ul {
  padding-left: 20px;
  margin: 10px 0 0;
  color: var(--muted);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: #374151;
}

.highlight-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: #374151;
}

.contact-info li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 13px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.value-card {
  border-radius: 18px;
  border: 1px solid #e0e7ff;
  padding: 20px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.timeline li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline strong {
  color: #111827;
}

.callout {
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(120deg, rgba(30, 58, 138, 0.08), rgba(37, 99, 235, 0.12));
  border: 1px solid #bfdbfe;
}

.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.services-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 240px;
}

.services-gallery {
  position: relative;
}

.services-gallery img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.28);
}

.services-gallery .gallery-main {
  height: 230px;
}

.services-gallery .gallery-floating {
  position: absolute;
  width: 160px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  right: -20px;
  bottom: -20px;
  box-shadow: 0 15px 30px rgba(2, 6, 23, 0.4);
  border: 4px solid #fff;
}
.history-page {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%, #eef2ff 100%);
}

.history-highlight {
  padding: 70px 0;
}

.history-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.history-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.history-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
  color: #475467;
}

.history-card ul li::before {
  content: '•';
  color: #1d4ed8;
  margin-right: 6px;
}

.history-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.history-metrics div {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.history-metrics strong {
  display: block;
  font-size: 28px;
  color: #1d4ed8;
}

.history-timeline {
  padding: 70px 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.timeline-grid article {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.timeline-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 10px;
}

.history-values {
  padding: 70px 0;
  background: #f8fafc;
}

.values-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card.icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.value-card.icon span {
  font-size: 28px;
}
