:root {
  --blue: #123a78;
  --blue-light: #f3f6fc;
  --grey: #4e5664;
  --border: #d9e1f2;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(18, 43, 94, 0.12);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}



html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
 
body {
  margin: 0;
  font-family: var(--font);
  color: #102033;
  background: #ffffff;
  line-height: 1.6;
}




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

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

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: #0f2440;
  margin-top: 0;
  padding: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: none;
  background: transparent;
  color: #fff;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.logo-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-search input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.35rem 0.4rem;
  min-width: 160px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.header-search input:focus {
  outline: none;
}

.header-search button {
  border: none;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  cursor: pointer;
}

.header-search svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.site-header:not(.is-solid) .main-nav a:hover {
  color: #fff;
}

.site-header.is-solid {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--grey);
}

.site-header.is-solid .logo {
  color: var(--blue);
}

.site-header.is-solid .logo-tagline {
  color: var(--grey);
}

.site-header.is-solid .main-nav a {
  color: var(--grey);
}

.site-header.is-solid .main-nav a:hover {
  color: var(--blue);
}

.site-header.is-solid .header-search {
  background: #f3f6fc;
  border-color: var(--border);
}

.site-header.is-solid .header-search input,
.site-header.is-solid .header-search input::placeholder,
.site-header.is-solid .header-search button {
  color: var(--grey);
}

.has-header-offset #main-content {
  padding-top: 110px;
}

/* Hero */
.hero {
  position: relative;
  background: url("../fotos/foto1.png") center/cover no-repeat;
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  text-align: center;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(7, 14, 28, 0.6),
    rgba(7, 14, 28, 0.7)
  );
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(2.5rem, 7vw, 3.5rem);
}

.hero-inner h1 {
  color: #ffffff;
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--border);
  box-shadow: 0 8px 20px rgba(15, 36, 64, 0.1);
  gap: 0.5rem;
}

.btn--outline::before {
  content: "←";
  font-size: 1rem;
}

.btn--outline:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(15, 36, 64, 0.18);
}

/* Sections */
.section {
  scroll-margin-top: 110px;
  padding: 3.5rem;
}

.section--intro {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.intro-wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.intro-wrapper p {
  color: var(--grey);
  margin: 0;
}

.container {
  margin: 0 2rem;
}

.container.about {
  display: flex;
  align-items: center; 
  gap: 2rem; 
  flex-wrap: wrap; 
}

.container-about-over-ons {
  display: flex;
  align-items: center; 
  gap: 4rem; 
  flex-wrap: wrap; 
  padding:4rem;
}

.container.about > div {
  flex: 1;
}

.container.about img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover; 
}


.intro {
  color: var(--grey);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(18, 43, 94, 0.08);
  display: grid;
  gap: 0.6rem;
}

.tile a {
  color: var(--blue);
  font-weight: 600;
}

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 16px 40px rgba(10, 20, 40, 0.15);
  border: 4px solid #fff;
}

.about img::after {
  content: '';
}

.contact-wrapper {
  display: grid;
  gap: clamp(1.5rem, 5vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: 0 12px 36px rgba(18, 43, 94, 0.12);
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-lead {
  margin: 0;
  color: var(--grey);
}

.contact-links {
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
}

.contact-links div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--blue-light);
  display: grid;
  gap: 0.3rem;
}

.contact-links span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.contact-links a {
  color: var(--blue);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #0f2440;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem;
  font: inherit;
  color: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  background: #e8f5e9;
  color: #246b35;
  font-weight: 600;
}

/* Info pages */
.info-header {
  background: #f6f8ff;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.info-header__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-header__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--grey);
}

.info-header__summary {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

.info-article-head {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.info-article-head__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-article-head__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.info-article-head__inner p {
  margin: 0;
  color: var(--grey);
  max-width: 720px;
}

.info-article-head__actions {
  margin-top: 1rem;
}

.info-overview {
  padding: 2rem 1.5rem 1rem;
  background: #fff;
}

.info-controls {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: end;
}

.info-controls__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.info-controls__field--search .info-search-box {
  position: relative;
}

.info-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.info-suggestion {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.8rem;
  background: #fff;
  cursor: pointer;
  color: var(--grey);
}

.info-suggestion:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.info-search-box input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font: inherit;
}

.info-controls select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font: inherit;
  background: #fff;
}

.info-controls__count {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--grey);
}

.info-controls__count strong {
  font-size: 1.5rem;
  color: #0f2440;
}

.info-list {
  max-width: 950px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fafbff;
}

.info-block__header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.info-block__header h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--blue);
}

.info-block__header span {
  font-size: 0.85rem;
  color: var(--grey);
}

.info-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.info-entry + .info-entry {
  border-top: 1px solid var(--border);
}

.info-entry a {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  color: inherit;
}

.info-entry__title {
  font-weight: 600;
  color: #0f2440;
}

.info-entry__summary {
  font-size: 0.9rem;
  color: var(--grey);
}

.info-entry__badge {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
}

.info-entry__snippet {
  margin: 0.5rem 1.2rem 1rem;
  font-size: 0.85rem;
  color: var(--grey);
  background: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
}

.info-entry--current {
  background: #fff;
  border-left: 4px solid var(--blue);
}

.info-entry--current a {
  padding-left: calc(1.2rem - 4px);
}

.info-empty {
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  background: #fff4f0;
  color: #7a3e22;
  text-align: center;
}

.info-article {
  padding: 3.5rem 1.5rem 3rem;
}

.info-article__inner {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: #fff;
  box-shadow: 0 18px 30px rgba(16, 32, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-article__label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.info-article__summary {
  margin: 0;
  color: var(--grey);
}

.info-article__body {
  display: grid;
  gap: 1.5rem;
}

.info-article__body > section + section {
  border-top: 1px solid var(--border);
  padding-top: 11rem;
}

.info-article__nav {
  margin-top: 1rem;
}

.info-article__nav .btn {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .info-controls {
    grid-template-columns: 1fr;
  }

  .info-article__inner {
    padding: 1.5rem;
  }
}

.article-section h2 {
  font-size: 1.3rem;
}

.article-callout {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.2rem;
  background: var(--blue-light);
  border-radius: 8px;
}

.article-callout--tip {
  border-left-color: #2f855a;
  background: #e9f7ef;
}

.article-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--grey);
}

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

.article-stepper {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-stepper li {
  margin-bottom: 1rem;
  padding-left: 2.4rem;
  position: relative;
  color: var(--grey);
}

.article-stepper li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.article-resources {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.article-resources a {
  color: var(--blue);
  font-weight: 600;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.article-table th,
.article-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.article-table thead {
  background: var(--blue-light);
}

.info-content ul,
.info-content ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--grey);
}

.info-callout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--blue-light);
  display: grid;
  gap: 0.5rem;
}

/* Footer */
.site-footer {
  background: #0d121d;
  color: #f1f5ff;
  padding: 2.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  align-items: center;
}

.footer-brand {
  font-weight: 600;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: #f1f5ff;
}

.footer-bottom {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 720px) {
  .main-nav {
    width: 100%;
    justify-content: center;
  }

  .container-info {
    grid-template-columns: 2fr;
  }

  .hero-hint {
    bottom: clamp(1.5rem, 6vw, 2.5rem);
  }

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

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