/* ===========================
   Variables & Reset
=========================== */
:root {
  --dark: #00364B;
  --teal: #00BAAA;
  --orange: #F54F23;
  --footer-bg: #0d364c;
  --white: #ffffff;
  --light-bg: #f7f9fb;
  --text: #2c3e50;
  --text-light: #6b7a8d;
  --shadow: 0 4px 24px rgba(0, 54, 75, 0.10);
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; }

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

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Skip to content (accessibility)
=========================== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 16px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(245, 79, 35, 0.35);
}

.btn--primary:hover {
  background: #d93d14;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 79, 35, 0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--secondary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; text-align: center; }

/* ===========================
   Section Helpers
=========================== */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

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

.section-header--left {
  text-align: left;
  margin: 0 0 40px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.highlight { color: var(--teal); }

/* ===========================
   Navbar
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 54, 75, 0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.navbar__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.scrolled .navbar__logo-img {
  filter: none;
}

.navbar__menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__menu ul li {
  position: relative;
}

.navbar__menu ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .navbar__menu ul li a {
  color: var(--dark);
}

.navbar__menu ul li a:hover,
.navbar.scrolled .navbar__menu ul li a:hover {
  color: var(--orange);
}

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 280px;
  padding: 8px 0;
  flex-direction: column;
}

/* Bridge the 8px gap so moving mouse from link to dropdown keeps it open */
.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.has-dropdown .dropdown li a {
  color: var(--dark) !important;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  white-space: nowrap;
  text-align: left;
}

.has-dropdown .dropdown li a:hover {
  background: var(--light-bg);
  color: var(--orange) !important;
}

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--dark);
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  background: image-set(url('images/hero-bg.webp') type('image/webp'), url('images/hero-bg.jpg') type('image/jpeg')) center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,54,75,0.88) 0%, rgba(0,54,75,0.72) 60%, rgba(0,90,122,0.60) 100%);
}

.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
}

/* ===========================
   About
=========================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about__text h2 { margin-bottom: 20px; }

.about__text .btn { margin-top: 12px; }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   Services
=========================== */
.services {
  padding: 100px 0;
  background: var(--light-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 54, 75, 0.16);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Last 2 cards span if odd */
.services__grid .service-card:nth-child(4) {
  grid-column: span 1;
}

/* ===========================
   Trust / Stats
=========================== */
.trust {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.trust__inner {
  text-align: center;
}

.trust h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.trust p {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 17px;
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat__number {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   Contact
=========================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__inner {}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 186, 170, 0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--orange); }

/* Form */
.contact__form {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 186, 170, 0.15);
}

.form-group textarea { resize: vertical; }

/* ===========================
   Kit Digital banner
=========================== */
.kit-digital-banner {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #e8eef4;
}

.kit-digital-banner .container {
  display: flex;
  align-items: center;
}

.kit-digital-banner img {
  width: 100%;
}

/* ===========================
   Footer
=========================== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer__brand p {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 300px;
}

.footer__badge {
  margin-top: 24px;
  max-width: 200px;
  opacity: 0.85;
}

.footer__links h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__links ul li a:hover { color: var(--teal); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--teal); }

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    padding: 80px 32px 32px;
    overflow-y: auto;
  }

  .navbar__menu.open {
    display: block;
  }

  .navbar__menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .navbar__menu ul li a {
    font-size: 20px;
    padding: 12px 0;
    color: var(--white) !important;
  }

  .has-dropdown .dropdown {
    display: flex;
    position: static;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 8px;
    margin-top: 4px;
    padding: 8px 0;
  }

  .has-dropdown .dropdown li a {
    color: rgba(255,255,255,0.75) !important;
    font-size: 15px !important;
    padding: 8px 16px !important;
  }

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .hero__content {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .stat__number { font-size: 36px; }
  .hero__title { font-size: 36px; }
  h2 { font-size: 28px; }
}

/* ===========================
   Interior Page Hero
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #005a7a 60%, #007a90 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,186,170,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(245,79,35,0.08) 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__sep { opacity: 0.5; }

/* ===========================
   Page Sections
=========================== */
.page-section {
  padding: 80px 0;
}

.page-section--gray {
  background: var(--light-bg);
}

.page-intro p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col__img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,54,75,0.18);
  object-fit: cover;
  height: 380px;
}

.two-col__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11l4 4 6-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* Info cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  transition: transform var(--transition);
}

.info-card:hover { transform: translateY(-4px); }
.info-card__icon { width: 48px; height: 48px; margin-bottom: 16px; }
.info-card h3 { margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===========================
   CTA Banner
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #005a7a 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
}

/* ===========================
   Legal Pages
=========================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid #e8eef4;
}

.legal-content h2:first-child { border-top: none; margin-top: 0; }

.legal-content h3 {
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a { color: var(--teal); }
.legal-content a:hover { text-decoration: underline; }

/* ===========================
   Sobre Nosotros
=========================== */
.quote-block {
  border-left: 4px solid var(--teal);
  padding: 24px 32px;
  margin: 40px 0;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block blockquote {
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.quote-block cite {
  font-size: 14px;
  color: var(--text-light);
  font-style: normal;
}

.objetivos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.objetivo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.objetivo-item__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  min-width: 44px;
}

.objetivo-item h4 { margin-bottom: 6px; }
.objetivo-item p { font-size: 14px; color: var(--text-light); }

.vision-block {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}

.vision-block h2 { color: var(--white); margin-bottom: 16px; }
.vision-block p { color: rgba(255,255,255,0.80); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* ===========================
   Contact page extras
=========================== */
.contact-checkboxes {
  margin-top: 8px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-check a { color: var(--teal); }

/* ===========================
   Responsive interior pages
=========================== */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 56px;
  }

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

  .vision-block {
    padding: 40px 24px;
  }

  .legal-content {
    padding: 48px 0;
  }

  .two-col__img img {
    height: 240px;
  }

  .page-section {
    padding: 56px 0;
  }

  .cta-section {
    padding: 56px 0;
  }
}
