*, *::before, *::after { border-color: #e8e5f0; box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fcfcfd;
  color: #1e1e3a;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* Colors */
.text-brand { color: #5e62ab; }
.text-orange { color: #F39A4A; }
.bg-brand { background-color: #5e62ab; }
.bg-brand-light { background-color: rgba(94,98,171,0.1); }
.bg-orange { background-color: #F39A4A; }
.bg-orange-light { background-color: rgba(243,154,74,0.15); }
.text-orange-dark { color: #d47a28; }
.gradient-indigo { background: linear-gradient(135deg, #5e62ab 0%, #4c4f8a 100%); }
.gradient-band { background-image: linear-gradient(135deg, #5e62ab 0%, #4c4f8a 60%, #d47a28 100%); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 24px -12px rgba(31,34,64,0.15);
}
.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .header-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .header-inner { padding-left: 2rem; padding-right: 2rem; } }
.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo-img { height: 4rem; width: auto; }
@media (min-width: 640px) { .header-logo-img { height: 5rem; } }
@media (min-width: 1024px) { .header-logo-img { height: 6rem; } }

.header-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) { .header-nav { display: flex; } }

.nav-link {
  position: relative;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30,30,58,0.8);
  transition: all 0.2s;
}
.nav-link:hover { color: #5e62ab; }
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: #F39A4A;
  border-radius: 9999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.nav-link:hover::after { transform: scaleX(1); }

.header-cta {
  display: none;
  border-radius: 9999px;
  background: #F39A4A;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(243,154,74,0.7);
  transition: all 0.2s;
}
.header-cta:hover { transform: translateY(-2px); background: #d47a28; box-shadow: 0 14px 28px -8px rgba(243,154,74,0.85); }
.header-cta:active { transform: scale(0.95) translateY(4px); }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: #1e1e3a;
  transition: all 0.15s;
}
.header-menu-btn:hover { background: rgba(94,98,171,0.05); }
@media (min-width: 768px) { .header-menu-btn { display: none; } }

.mobile-menu {
  background: rgba(0,0,0,0.1);
}
.mobile-menu-inner {
  margin: 0 1rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
}
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1e1e3a;
  transition: all 0.15s;
}
.mobile-nav-link:hover { background: #f0f0f8; }
.mobile-nav-cta {
  margin-top: 0.5rem;
  border-radius: 9999px;
  background: #F39A4A;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
}
.mobile-nav-cta:active { transform: scale(0.97); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) { .hero-section { padding-top: 8rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .hero-section { padding-top: 9rem; padding-bottom: 5rem; } }

.hero-grid {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}
@media (min-width: 640px) { .hero-grid { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 0 2rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5e62ab;
  border: 1px solid rgba(94,98,171,0.15);
  backdrop-filter: blur(8px);
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  color: #1e1e3a;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }

.hero-title-highlight {
  position: relative;
  display: inline;
  color: #F39A4A;
}

.hero-desc {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(30,30,58,0.7);
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; align-items: center; } }

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #F39A4A;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(243,154,74,0.75);
  transition: all 0.2s;
}
.hero-btn-primary:hover { background: #d47a28; box-shadow: 0 18px 36px -12px rgba(243,154,74,0.85); }
.hero-btn-primary svg { transition: transform 0.2s; }
.hero-btn-primary:hover svg { transform: translateX(4px); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(94,98,171,0.25);
  background: #fff;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5e62ab;
  transition: all 0.2s;
}
.hero-btn-secondary:hover { background: #5e62ab; color: #fff; }

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: 1.125rem;
  color: rgba(30,30,58,0.7);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  background: #fff;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(94,98,171,0.1);
}
.trust-text { font-weight: 500; font-size: 0.875rem; }

.hero-image-wrap {
  position: relative;
}
.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 30px 60px -30px rgba(31,34,64,0.35);
  border: 1px solid rgba(0,0,0,0.05);
}
.hero-image {
  border-radius: 1.4rem;
  object-fit: cover;
  width: 100%;
  height: 380px;
}
@media (min-width: 640px) { .hero-image { height: 460px; } }
@media (min-width: 1024px) { .hero-image { height: 540px; } }

.hero-floating-badge-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  display: none;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-floating-badge-bottom { display: flex; } }

.floating-badge-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  color: #fff;
}
.floating-label { font-size: 0.75rem; font-weight: 500; color: rgba(30,30,58,0.6); }
.floating-value { font-size: 0.875rem; font-weight: 700; color: #1e1e3a; }

.hero-floating-badge-top {
  position: absolute;
  top: -1.25rem;
  right: -0.75rem;
  display: none;
  border-radius: 1rem;
  background: #F39A4A;
  padding: 0.75rem 1rem;
  color: #fff;
  box-shadow: 0 10px 20px -6px rgba(243,154,74,0.5);
}
@media (min-width: 640px) { .hero-floating-badge-top { display: block; } }
.floating-top-label { font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.floating-top-value { font-size: 0.875rem; font-weight: 700; }

/* ===== VALUE PROPS ===== */
.value-props-section {
  position: relative;
  padding: 3rem 0;
}
@media (min-width: 640px) { .value-props-section { padding: 4rem 0; } }

.value-props-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 0 1rem;
}
@media (min-width: 640px) { .value-props-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .value-props-section .value-props-grid { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .value-props-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .value-props-section .value-props-grid { padding: 0 2rem; } }

.value-prop-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-prop-image-wrap {
  overflow: hidden;
  border-radius: 1rem;
}
.value-prop-image {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.value-prop-image:hover { transform: scale(1.05); }
.value-prop-title { font-size: 1.125rem; font-weight: 700; color: #1e1e3a; }
.value-prop-desc { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(30,30,58,0.65); }

/* ===== SERVICES ===== */
.services-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) { .services-section { padding-top: 4rem; padding-bottom: 7rem; } }

.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .services-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .services-container { padding: 0 2rem; } }

.services-header {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.services-label {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(243,154,74,0.1);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d47a28;
}
.services-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1e1e3a;
}
@media (min-width: 640px) { .services-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .services-title { font-size: 3rem; } }
.services-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(30,30,58,0.65);
}
@media (min-width: 640px) { .services-subtitle { font-size: 1.125rem; } }

.services-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  background: #fff;
  color: #1e1e3a;
  box-shadow: 0 10px 30px -20px rgba(31,34,64,0.25);
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-4px); }

.service-card-featured {
  background: linear-gradient(135deg, #5e62ab 0%, #4c4f8a 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px -30px rgba(46,46,107,0.6);
}
.service-card-featured::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(243,154,74,0.3);
  filter: blur(60px);
  pointer-events: none;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.service-icon-service {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.featured-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service-title { font-size: 1.25rem; font-weight: 700; }
@media (min-width: 640px) { .service-title { font-size: 1.5rem; } }
.service-desc { margin-top: 0.75rem; font-size: 0.875rem; }
.service-desc:not(.service-card-featured .service-desc) { color: rgba(30,30,58,0.65); }
.service-card-featured .service-desc { color: rgba(255,255,255,0.8); }

.service-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-bullets:not(.featured-bullets) li { color: rgba(30,30,58,0.75); }
.featured-bullets li { color: rgba(255,255,255,0.85); }
.bullet-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.service-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  align-self: flex-start;
  transition: color 0.2s;
}
.service-link:not(.service-link-featured):hover { color: #F39A4A; }
.service-link-featured { color: #F39A4A; }
.service-link-featured:hover { color: #fff; }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(2px) translateY(-2px); }

/* ===== ABOUT ===== */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5e62ab 0%, #4c4f8a 100%);
  padding: 5rem 0;
}
@media (min-width: 640px) { .about-section { padding: 7rem 0; } }

.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
  padding: 0 1rem;
}
@media (min-width: 640px) { .about-grid { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 0 2rem; } }

.about-label {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}
.about-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 640px) { .about-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-title { font-size: 3rem; } }
.about-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) { .about-desc { font-size: 1.125rem; } }

.about-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card {
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F39A4A;
}
@media (min-width: 640px) { .stat-value { font-size: 1.875rem; } }
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

.about-competencies {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .about-competencies { grid-template-columns: 1fr 1fr; } }

.competency-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 6rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: all 0.5s;
  animation: fade-in 0.6s ease-out both;
}
.competency-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(243,154,74,0.6);
  box-shadow: 0 10px 40px -10px rgba(243,154,74,0.55);
}
.competency-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(243,154,74,0.15);
  border: 1px solid rgba(243,154,74,0.3);
  margin-right: 0.75rem;
  transition: all 0.5s;
}
.competency-item:hover .competency-icon {
  transform: scale(1.1) rotate(6deg);
  background: rgba(243,154,74,0.3);
}
.competency-text {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 4rem 0;
}
@media (min-width: 640px) { .cta-section { padding: 5rem 0; } }

.cta-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .cta-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .cta-container { padding: 0 2rem; } }

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #5e62ab 0%, #4c4f8a 60%, #d47a28 100%);
}
@media (min-width: 640px) { .cta-banner { padding: 3rem; } }
@media (min-width: 1024px) { .cta-banner { padding: 3.5rem; } }

.cta-content { position: relative; }
.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }
.cta-desc {
  margin-top: 0.75rem;
  max-width: 40rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 640px) { .cta-desc { font-size: 1.125rem; } }

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #fff;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4c4f8a;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  margin-top: 1rem;
}
.cta-whatsapp-btn:hover { transform: scale(1.03); }

@media (min-width: 1024px) {
  .cta-banner { display: flex; align-items: center; justify-content: space-between; }
  .cta-whatsapp-btn { margin-top: 0; flex-shrink: 0; }
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) { .contact-section { padding-top: 4rem; padding-bottom: 7rem; } }

.contact-bg-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 50% at 50% 0%, rgba(250,248,242,0.98) 0%, transparent 70%);
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .contact-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .contact-container { padding: 0 2rem; } }

.contact-header {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.contact-label {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(94,98,171,0.1);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5e62ab;
}
.contact-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1e1e3a;
}
@media (min-width: 640px) { .contact-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3rem; } }
.contact-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(30,30,58,0.65);
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: block;
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -20px rgba(31,34,64,0.25); }
.contact-card > div:first-child { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-card-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
}
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(30,30,58,0.55);
}
.contact-card-value {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e1e3a;
}
.contact-card-email { word-break: break-all; }

.contact-form {
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(31,34,64,0.25);
  border: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 0; }
.form-group + .form-group { margin-top: 1rem; }
.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e1e3a;
}
.form-input, .form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e8e5f0;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1e1e3a;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(30,30,58,0.4); }
.form-input:focus, .form-textarea:focus {
  border-color: #5e62ab;
  box-shadow: 0 0 0 4px rgba(94,98,171,0.15);
}

.form-submit {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #F39A4A;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(243,154,74,0.75);
  transition: all 0.2s;
}
.form-submit:hover { background: #d47a28; box-shadow: 0 18px 36px -12px rgba(243,154,74,0.85); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
@media (min-width: 640px) { .form-submit { width: auto; } }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #4c4f8a;
  color: #fff;
}
.footer-blob-top {
  position: absolute;
  top: -8rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(243,154,74,0.15);
  filter: blur(60px);
  pointer-events: none;
}
.footer-blob-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(94,98,171,0.4);
  filter: blur(60px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 3.5rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 3.5rem 2rem; } }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }

.footer-logo { height: 6rem; width: auto; border-radius: 1rem; }
.footer-brand-desc {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.footer-socials {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-link {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.social-link:hover { background: #F39A4A; color: #fff; border-color: #F39A4A; }

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.footer-links a:hover { color: #F39A4A; }

.footer-contact-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-list svg { margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a:hover { color: #F39A4A; }
.break-all { word-break: break-all; }

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2.375rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}
@media (min-width: 640px) { .footer-bottom { font-size: 0.75rem; } }
.footer-credit {
  font-weight: 600;
  color: #F39A4A;
}
.footer-credit:hover { text-decoration: underline; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 2px 6px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
@media (min-width: 640px) { .whatsapp-fab { bottom: 1.5rem; right: 1.5rem; } }
.whatsapp-fab:hover { transform: scale(1.1); }

/* ===== TOAST ===== */
#toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3);
  animation: toast-in 0.3s ease-out;
  max-width: 22rem;
}
.toast-success { background: #16a34a; }
.toast-error { background: #dc2626; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(-0.5rem) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast-out {
  animation: toast-out 0.3s ease-in forwards;
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(-0.5rem) scale(0.95); }
}
