:root {
  --orange: #0b2f5b;
  --orange-dark: #082447;
  --orange-light: #1e4e7a;
  --black: #151515;
  --charcoal: #1f1f1f;
  --gray-900: #2a2a2a;
  --gray-700: #3c3c3c;
  --gray-500: #6b6b6b;
  --gray-300: #c9c9c9;
  --gray-200: #e5e5e1;
  --gray-100: #f6f5f1;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.12);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: #ffffff;
  color: var(--gray-900);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--black);
  color: var(--gray-900);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  color: var(--gray-900);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand img {
  width: 170px;
  height: auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
}


.site-nav {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 18px;
  font-weight: 600;
  color: var(--gray-700);
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
  background: rgba(11, 47, 91, 0.12);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--orange-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gray-900);
  margin: 5px 0;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Crect width='320' height='320' fill='none'/%3E%3Cpath d='M0 64H320M0 160H320M0 256H320M64 0V320M160 0V320M256 0V320' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='2'/%3E%3Cpath d='M0 0L320 320M320 0L0 320' stroke='%230b2f5b' stroke-opacity='0.12' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0;
}

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

.hero-content {
  color: var(--gray-900);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--gray-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(11, 47, 91, 0.35);
  color: var(--orange-dark);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(11, 47, 91, 0.08);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 47, 91, 0.08);
  font-size: 0.9rem;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(11, 47, 91, 0.12);
  color: var(--black);
  border: 1px solid rgba(11, 47, 91, 0.12);
  backdrop-filter: blur(8px);
}

.hero-card-top {
  margin-bottom: 16px;
}

.hero-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 47, 91, 0.12);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gray-700);
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hero-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
}

.hero-card-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.section {
  padding: 80px 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--orange-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.section h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

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

.about .grid-2 {
  grid-template-columns: 1fr;
}

.about .copy {
  max-width: 720px;
  margin: 0 auto;
}

.panel {
  background: var(--gray-900);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 47, 91, 0.12);
}

.value-list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--gray-700);
}

.value-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-block;
  margin-right: 10px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

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

.value-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 47, 91, 0.12);
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.categories {
  background: var(--white);
  border-top: 1px solid rgba(11, 47, 91, 0.12);
  border-bottom: 1px solid rgba(11, 47, 91, 0.12);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7f7f3 100%);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(11, 47, 91, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  min-height: 120px;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}



.category-photo {
  box-sizing: border-box;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(229, 223, 216, 0.9);
  background: #f4f4f1;
  --photo-scale: 1;
  transform: scale(var(--photo-scale));
  transform-origin: center;
}

.category-photo--zoom-in {
  --photo-scale: 1.14;
}

.category-photo--zoom-out {
  --photo-scale: 0.9;
}

.category-photo--contain {
  --photo-scale: 1;
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
}

.category-card h3 {
  font-size: 1rem;
  color: var(--gray-900);
}

.contact {
  background: linear-gradient(120deg, #f1f1ee 0%, #ffffff 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-details .label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gray-500);
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(11, 47, 91, 0.12);
  border: 1px solid rgba(11, 47, 91, 0.12);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 600;
  color: var(--gray-700);
}

.field input,
.field textarea {
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #fafafa;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(11, 47, 91, 0.35);
  border-color: var(--orange);
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.site-footer {
  background: #0b2f5b;
  color: #d8d8d8;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a {
  color: #d8d8d8;
  transition: color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-card {
    margin-top: 10px;
  }
}


@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
  .whatsapp-button {
    right: 16px;
    bottom: 18px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}
