:root {
  --background-color: #e7f4f3;
  --surface-color: #ffffff;
  --surface-dark: #005959;
  --surface-dark-alt: #0a6b69;
  --default-color: #0b4f4e;
  --muted-color: #4e7776;
  --heading-color: #f4efe7;
  --heading-dark: #005959;
  --accent-color: #c81aa0;
  --accent-hover: #a10f7f;
  --border-color: rgba(0, 89, 89, 0.14);
  --default-font: "Manrope", system-ui, sans-serif;
  --heading-font: "Sora", system-ui, sans-serif;
  --nav-font: "Open Sans", Arial, sans-serif;
  --shadow-lg: 0 24px 70px rgba(0, 89, 89, 0.18);
  --shadow-md: 0 18px 40px rgba(0, 89, 89, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  color: var(--default-color);
  background:
    radial-gradient(circle at top left, rgba(138, 215, 222, 0.85), transparent 30%),
    linear-gradient(180deg, #d7f0f1 0%, #f5f2eb 36%, #ffffff 100%);
  font-family: var(--default-font);
  text-rendering: optimizeLegibility;
}

body.mobile-nav-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none; /* ¡Esta es la línea mágica que borra los puntos! */
}

img {
  display: block;
  max-width: 100%;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 247, 0.92));
}

.section-dark {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-alt) 100%);
  overflow: hidden;
}

.section-dark::before,
.section-dark::after,
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.section-dark::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -40px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.section-dark::after {
  width: 540px;
  height: 540px;
  right: -220px;
  top: 80px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.eyebrow,
.section-tag,
.panel-label,
.insight-card span,
.stat-card span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nav-font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.panel-label,
.contact-points span {
  color: var(--surface-dark);
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow::before,
.section-tag::before,
.section-tag-light::before,
.panel-label::before,
.contact-points span::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.about h2,
.network h2,
.contact h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: clamp(2.3rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.section-dark h2 {
  color: var(--heading-color);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-overlay {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.scrolled .header {
  position: fixed;
  background: linear-gradient(90deg, rgba(117, 190, 198, 0.96) 0%, rgba(0, 89, 89, 0.92) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 89, 89, 0.22);
}

body.scrolled .header-overlay {
  padding-top: 4px;
  padding-bottom: 4px;
}

body.scrolled .navmenu {
  background: transparent;
  box-shadow: none;
}

.header-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.36);
}

body.scrolled .header-divider {
  opacity: 0;
}

.header-top {
  display: flex;
  align-items: flex-end; /* Alineamos todos los elementos por su parte inferior */
  justify-content: space-between;
  height: 110px; 
  min-height: 110px;
  padding-top: 15px; 
  padding-bottom: 0; /* Totalmente pegado al divider */
}

.header-contact {
  display: none !important;
}

.header-contact .utility-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 13px;
  margin-top: -4px;
  border-radius: 0 0 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #d02eb0 0%, var(--accent-color) 100%);
  font-family: var(--nav-font);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact .utility-cta.active {
  background: linear-gradient(135deg, #ba168f 0%, var(--accent-hover) 100%);
}

.mobile-menu-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-row span {
  color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.logo img,
.footer-brand img {
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
  padding-bottom: 10px; /* Separa el logo del divider */
}

.logo img {
  display: block;
  max-height: 80px; /* ¡Esta es la clave! Reducimos de 74px a 48px */
  width: auto;
  box-shadow: none; 
}

.footer-brand img {
  border-radius: 10px;
}
.navmenu {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 0;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.header-top .navmenu {
  flex: none;
  margin: 0;
}

.navmenu ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end; /* Alinear abajo para que toquen el piso */
  gap: 2px;
  list-style: none;
  padding: 0 14px;
}

.navmenu a {
  position: relative;
  display: inline-flex;
  align-items: flex-end; /* Alinear el texto hacia abajo */
  justify-content: center;
  min-height: auto; /* Quitamos el min-height fijo que flotaba el texto */
  padding: 0 12px 0; /* Cero padding abajo */
  border: 0;
  border-bottom: 2px solid transparent; /* Ahora es línea de 2px para cuando aparezca */
  background: transparent;
  color: #ffffff; /* Blanco puro y sólido como la referencia */
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px; /* Algo más conciso, como la ref */
  font-weight: 700; /* Negritas para darles el aspecto sólido de los botones en IAPA */
  letter-spacing: 0.5px; /* Ligeramente más juntos */
  line-height: 1; /* Texto compreso */
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  padding-bottom: 26px; /* Ligeramente separado del divider */
  transition: color 0.25s ease, border-color 0.25s ease;
}

.navmenu li + li a {
  border-left: 0;
}

.navmenu a:hover {
  color: #b4dde1;
  background: transparent;
  border-bottom-color: rgba(180, 221, 225, 0.55);
  box-shadow: none;
  text-shadow: none;
  text-decoration: none;
}
.navmenu a:hover::after {
  display: none;
}

/* Limpia bordes, fondos y contornos al pasar el cursor, hacer clic o estar activo */
.navmenu a:hover,
.navmenu a:focus,
.navmenu a:active,
.navmenu a.active {
  color: #b4dde1; /* Tu color celeste */
  background: transparent !important;
  border: none !important;
  outline: none !important; /* Quita la línea de selección del navegador */
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Elimina la línea inferior (::after) en cualquier estado posible */
.navmenu a::after,
.navmenu a:hover::after,
.navmenu a:focus::after,
.navmenu a:active::after,
.navmenu a.active::after {
  display: none !important;
}

.navmenu a.active {
  color: #b4dde1;
  background: transparent;
  border-bottom-color: rgba(180, 221, 225, 0.55);
}

.btn-primary-shell,
.btn-secondary-shell,
.submit-btn,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-family: var(--nav-font);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-secondary-shell {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary-shell,
.submit-btn,
.panel-link {
  color: #ffffff;
  background: linear-gradient(135deg, #d02eb0 0%, var(--accent-color) 100%);
  box-shadow: 0 16px 28px rgba(200, 26, 160, 0.28);
}

.btn-secondary-shell:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
}

.btn-primary-shell:hover,
.submit-btn:hover,
.panel-link:hover,
.header-contact .utility-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ba168f 0%, var(--accent-hover) 100%);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--surface-dark);
  background: #ffffff;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

.hero {
  min-height: calc(100vh - 100px);
  padding-top: 130px; /* ¡Reducimos de 240px a 130px! */
  padding-bottom: 80px;
  overflow: hidden;
}

.home-page .hero {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 0;
  overflow: visible;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Bajamos la opacidad de 0.86 a 0.50, y así sucesivamente */
    linear-gradient(180deg, rgba(0, 89, 89, 0.50) 0%, rgba(0, 89, 89, 0.70) 58%, rgba(0, 89, 89, 0.90) 100%),
    url("../img/main.-pg.jpg") center/cover no-repeat;
}

.hero-wordmark {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading-font);
  font-size: clamp(7rem, 24vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  color: rgba(138, 215, 222, 0.12);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  right: -130px;
  bottom: -160px;
}

.hero-orbit-two {
  width: 340px;
  height: 340px;
  right: 80px;
  bottom: 20px;
}

.hero .container {
  z-index: 2;
}

.hero .eyebrow {
  color: rgba(244, 239, 231, 0.82);
}

.hero .eyebrow::before {
  background: rgba(244, 239, 231, 0.62);
}

.hero h1 {
  max-width: 700px; /* Le damos espacio para que rompa naturalmente en 2 o 3 líneas */
  margin-top: 20px;
  color: #ffffff;
  /* Un tamaño intermedio perfecto, ni gigante ni diminuto */
  font-size: clamp(2rem, 3.5vw, 3.2rem); 
  line-height: 1.1; /* Interlineado apretado para el título */
  text-transform: uppercase;
  letter-spacing: 0.02em; /* Le damos un poco de "aire" entre letras, clásico corporativo */
  font-weight: 700;
}

.hero-copy {
  max-width: 600px; /* Un poco más angosto que el título para darle forma de bloque */
  margin-top: 32px; /* ¡Clave! Más separación entre título y párrafo para que "respiren" */
  color: rgba(255, 255, 255, 0.85); /* Blanco ligeramente transparente */
  font-size: 1.1rem; /* Tamaño muy legible para descripción */
  line-height: 1.7; /* Interlineado suelto en el párrafo para contrastar con el título */
  font-weight: 400; /* Letra sin negrita (ligera) */
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.home-hero h1 .hero-h1-light {
  display: block;
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}


.hero-actions {
  gap: 16px;
  margin-top: 36px;
}

.hero-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.hero-panel li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.home-hero-support {
  max-width: 860px;
  margin-top: 18px;
  color: rgba(244, 239, 231, 0.9);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.72;
}

.home-promo-grid {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  margin-bottom: -150px; /* La mitad de la tarjeta queda volando sobre la siguiente sección */
}

.home-promo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 36px 40px;
  border: none;
  border-radius: 8px;
  color: var(--default-color);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 89, 89, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 89, 89, 0.09);
}

.home-promo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.home-promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #a4d3d8;
  background: rgba(139, 214, 223, 0.18);
  font-size: 1.4rem;
}

.home-promo-header h2 {
  margin: 0;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-promo-copy {
  margin-bottom: 30px;
}

.home-promo-copy p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.98rem;
  line-height: 1.7;
}

.home-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 0 24px;
  align-self: flex-start;
  border-radius: 6px;
  color: #ffffff;
  background: var(--surface-dark);
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-promo-button:hover {
  color: #ffffff;
  background: var(--surface-dark-alt);
}

.home-hero-panel {
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.home-hero-panel h2 {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.home-hero-panel p {
  margin-top: 18px;
  color: rgba(244, 239, 231, 0.82);
  line-height: 1.8;
}

.home-hero-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 239, 231, 0.82);
  line-height: 1.72;
}

.home-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8bd6df;
}

.home-signal-grid {
  margin-top: 58px;
}

.home-signal-card {
  height: 100%;
  padding: 26px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.home-signal-card span {
  display: inline-flex;
  color: rgba(244, 239, 231, 0.72);
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-signal-card h3 {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-signal-card p {
  margin-top: 16px;
  color: rgba(244, 239, 231, 0.8);
  line-height: 1.76;
}

.stats-row {
  margin-top: 70px;
}

.stat-card,
.service-card,
.copy-panel,
.insight-card,
.contact-shell,
.network-panel {
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 242, 241, 0.88));
  box-shadow: var(--shadow-md);
}

.stat-card span {
  color: var(--accent-color);
}

.stat-card h3,
.copy-grid h3,
.service-card h3,
.insight-card h3,
.network-item strong {
  color: var(--heading-dark);
}

.stat-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.stat-card p,
.copy-grid p,
.service-card p,
.insight-card p,
.network-item span,
.contact p,
.footer-contact p,
.footer ul a {
  color: var(--muted-color);
  line-height: 1.8;
}

.stat-card p,
.service-card p,
.insight-card p {
  margin-top: 14px;
}

.copy-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.copy-panel > p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.copy-grid div {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(216, 238, 237, 0.64);
}

.service-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 26, 160, 0.24);
  box-shadow: var(--shadow-lg);
}

.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  color: var(--accent-color);
  background: rgba(200, 26, 160, 0.1);
  font-size: 1.8rem;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 1.28rem;
}

.services-note {
  max-width: 780px;
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 4px solid var(--accent-color);
  border-radius: 0 24px 24px 0;
  background: rgba(216, 238, 237, 0.56);
}

.services-note p {
  color: var(--muted-color);
  font-size: 1.04rem;
  line-height: 1.8;
}

.home-link-grid {
  margin-top: 62px;
}

.home-feature-card {
  display: block;
  height: 100%;
  padding: 32px 32px 36px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0, 89, 89, 0.22);
}

.home-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #8bd6df;
  background: rgba(139, 214, 223, 0.18);
  font-size: 1.9rem;
}

.home-feature-card h2 {
  margin-top: 22px;
  color: var(--accent-color);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.home-feature-card p {
  margin-top: 18px;
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
}

.home-who {
  padding-top: 220px; /* Espacio para que quepan las tarjetas superpuestas */
}

.home-who-panel .panel-link {
  margin-top: 28px;
}

.home-intro {
  padding-top: 104px;
}

.home-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.home-fact-card {
  padding: 24px 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: rgba(216, 238, 237, 0.38);
}

.home-fact-card strong {
  display: block;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-fact-card span {
  display: block;
  margin-top: 10px;
  color: var(--default-color);
  line-height: 1.7;
}

.home-guide {
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 248, 247, 0.92) 100%);
}

.home-guide-copy {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted-color);
  line-height: 1.82;
}

.home-service-stack {
  display: grid;
  gap: 14px;
}

.home-service-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 24px 22px;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 214, 223, 0.4);
  box-shadow: var(--shadow-lg);
}

.home-service-order {
  display: inline-flex;
  min-width: 42px;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-service-copy strong {
  display: block;
  color: var(--heading-dark);
  font-size: 1.16rem;
}

.home-service-copy p {
  margin-top: 10px;
  color: var(--muted-color);
  line-height: 1.76;
}

.home-office-card {
  padding: 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(227, 243, 241, 0.92));
  box-shadow: var(--shadow-md);
}

.home-office-card h3 {
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.home-office-card p {
  margin-top: 16px;
  color: var(--muted-color);
  line-height: 1.78;
}

.home-office-meta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.home-office-meta span {
  display: block;
  color: var(--surface-dark);
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-office-card .btn-secondary-shell {
  margin-top: 24px;
  width: 100%;
  color: var(--surface-dark);
  border-color: rgba(0, 89, 89, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.home-office-card .btn-secondary-shell:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #ba168f 0%, var(--accent-hover) 100%);
}

.home-story-section {
  padding-top: 96px;
}

.home-quote-card {
  height: 100%;
  padding: 30px 30px 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.home-quote-card span {
  display: inline-flex;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-quote-card h3 {
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: 1.36rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-quote-card p {
  margin-top: 16px;
  color: var(--muted-color);
  line-height: 1.8;
}

.home-achieve {
  overflow: hidden;
}

.home-achieve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-achieve-card {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-achieve-card span {
  display: inline-flex;
  color: rgba(139, 214, 223, 0.9);
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-achieve-card h3 {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.home-achieve-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.74;
}

.home-final-cta {
  padding-top: 96px;
}

.home-final-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: end;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: #004d4d;
  background: #79c2c4;
  box-shadow: var(--shadow-lg);
}

.home-final-band .section-tag {
  color: #004d4d;
}

.home-final-band h2 {
  margin-top: 18px;
  color: #b81c81;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.home-final-band p {
  max-width: 620px;
  margin-top: 18px;
  color: #004d4d;
  line-height: 1.82;
}

.home-final-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.home-final-link {
  color: #004d4d;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-capabilities {
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 248, 247, 0.92) 100%);
}

.home-capabilities .section-heading {
  max-width: 860px;
}

.home-capability-card {
  height: 100%;
}

.home-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--accent-color);
  background: rgba(200, 26, 160, 0.1);
  font-size: 1.65rem;
}

.home-capability-card .panel-label {
  margin-top: 18px;
}

.home-principles {
  overflow: hidden;
}

.home-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-principle-card {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-principle-card span {
  display: inline-flex;
  color: rgba(139, 214, 223, 0.9);
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-principle-card h3 {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.home-principle-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.home-contact-section {
  padding-top: 96px;
}

.home-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: end;
  padding: 40px 42px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 242, 240, 0.92));
  box-shadow: var(--shadow-md);
}

.home-contact-band h2 {
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.home-contact-band p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted-color);
  line-height: 1.8;
}

.home-contact-links {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.home-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--surface-dark);
  font-family: var(--nav-font);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-contact-link i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.home-contact-links .btn-primary-shell {
  margin-top: 6px;
}

.inner-page {
  background:
    radial-gradient(circle at top left, rgba(138, 215, 222, 0.58), transparent 26%),
    linear-gradient(180deg, #f0f7f6 0%, #ffffff 100%);
}

.inner-header {
  position: absolute;
}

.page-hero {
  min-height: 430px;
  padding-top: 140px; /* Reducimos de 250px a 140px */
  padding-bottom: 110px;
  overflow: hidden;
}

.page-hero .hero-background::before,
.inner-hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 89, 89, 0.9) 0%, rgba(0, 89, 89, 0.95) 100%),
    url("../img/inner-bg.jpg") center/cover no-repeat;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy .eyebrow {
  color: rgba(244, 239, 231, 0.82);
}

.page-hero-copy .eyebrow::before {
  background: rgba(244, 239, 231, 0.62);
}

.page-hero-copy h1 {
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.page-hero-copy p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(244, 239, 231, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.stat-grid {
  margin-top: 48px;
}

.kpi-card {
  height: 100%;
}

.content-section {
  padding-top: 96px;
}

.content-card {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.content-card h3 {
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: 1.5rem;
}

.content-card p {
  margin-top: 16px;
  color: var(--muted-color);
  line-height: 1.85;
}

.content-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.content-list li {
  position: relative;
  padding-left: 22px;
  color: var(--default-color);
  line-height: 1.75;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.category-grid,
.contact-method-grid {
  margin-top: 48px;
}

.category-card h3,
.contact-method-card h3,
.office-card h3 {
  text-transform: uppercase;
}

.page-cta-band {
  padding-top: 86px;
  padding-bottom: 86px;
}

.page-cta-band h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.contact-detail-section {
  padding-top: 96px;
}

.office-card {
  padding-bottom: 34px;
}

.office-link {
  margin-top: 28px;
}

.office-socials {
  margin-top: 28px;
}

.network p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.85;
}

.network-panel {
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.network-item + .network-item {
  margin-top: 18px;
}

.network-item {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.network-item strong,
.network-item span {
  display: block;
}

.network-item strong {
  color: #ffffff;
}

.network-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.insight-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.insight-card span {
  color: var(--accent-color);
}

.insight-card h3 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.insight-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--surface-dark);
  font-family: var(--nav-font);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-shell {
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 246, 0.94));
  box-shadow: var(--shadow-lg);
}

.contact p {
  margin-top: 18px;
  max-width: 520px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-points p {
  color: var(--muted-color);
}

.contact-form .form-control {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 89, 89, 0.14);
  border-radius: 16px;
  color: var(--default-color);
  background: #ffffff;
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 180px;
}

.contact-form .form-control:focus {
  border-color: rgba(200, 26, 160, 0.46);
  box-shadow: 0 0 0 0.25rem rgba(200, 26, 160, 0.1);
}

.footer {
  position: relative;
  padding: 86px 0 36px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--surface-dark);
  overflow: hidden;
}

.footer::before {
  right: -120px;
  top: 110px;
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.footer::after {
  right: 60px;
  top: 180px;
  width: 260px;
  height: 260px;
  border: 1px dotted rgba(255, 255, 255, 0.18);
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  max-height: 120px;
}

.footer-contact {
  margin-top: 26px;
}

.footer-contact p + p {
  margin-top: 8px;
}

.footer h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.6rem;
}

.footer ul {
  display: grid;
  gap: 12px;
}

.footer ul a {
  font-family: var(--nav-font);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.social-links a:hover {
  color: #ffffff;
  background: var(--accent-color);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: rgba(244, 239, 231, 0.74);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 996;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #d02eb0 0%, var(--accent-color) 100%);
  box-shadow: 0 16px 30px rgba(200, 26, 160, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  color: #ffffff;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #d7f0f1 0%, #005959 100%);
}

#preloader::before,
#preloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#preloader::before {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

#preloader::after {
  width: 34px;
  height: 34px;
  background: var(--accent-color);
  box-shadow: 0 0 0 18px rgba(200, 26, 160, 0.16);
  animation: pulse-loader 1.15s infinite ease-in-out;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.php-email-form .loading {
  color: var(--default-color);
  background: rgba(0, 89, 89, 0.08);
}

.php-email-form .error-message {
  color: #ffffff;
  background: #d34242;
}

.php-email-form .sent-message {
  color: #ffffff;
  background: #1a9b70;
}

@keyframes pulse-loader {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.22);
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .header-overlay {
    padding-top: 4px;
  }

  .logo {
    min-height: 52px;
  }

  .logo img {
    max-height: 52px;
  }

  .navmenu ul {
    padding: 0 10px;
  }

  .navmenu a {
    padding: 0 10px;
    font-size: 17px;
  }

  .home-promo-card {
    padding: 26px 26px 30px;
  }

  .home-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .header-top {
    height: 80px;
    min-height: 80px;
  }

  .office-iapa-wrapper .row.g-0 > div.position-relative {
    height: 400px;
  }

  .navmenu {
    background: rgba(0, 89, 89, 0.98) !important;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
  }

  .page-hero {
    padding-top: 180px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .home-page .hero {
    padding-bottom: 170px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-wordmark {
    top: 170px;
    font-size: 34vw;
  }

  .hero-panel {
    padding: 26px;
  }

  .copy-grid {
    grid-template-columns: 1fr;
  }

  .home-promo-grid,
  .home-achieve-grid,
  .home-final-band {
    grid-template-columns: 1fr;
  }

  .home-promo-grid {
    margin-top: 48px;
    margin-bottom: -110px;
  }

  .home-who {
    padding-top: 170px;
  }

  .home-guide-copy {
    max-width: none;
  }

  .home-hero-panel {
    padding: 28px;
  }

  .home-signal-grid {
    margin-top: 40px;
  }

  .home-fact-grid,
  .home-principles-grid,
  .home-contact-band {
    grid-template-columns: 1fr;
  }

  .home-service-item {
    padding: 22px;
  }

  .home-office-card,
  .home-quote-card,
  .home-achieve-card {
    padding: 24px;
  }

  .home-contact-band {
    padding: 32px;
  }

  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .header-divider {
    display: none;
  }

  .header-top {
    height: 70px;
    min-height: 70px;
  }

  .logo {
    min-height: 40px;
  }

  .logo img {
    max-height: 40px;
  }

  .header-contact .utility-cta {
    min-height: 28px;
    padding: 0 9px;
    margin-top: -4px;
    font-size: 0.68rem;
  }

  .header-overlay {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .mobile-menu-row {
    margin-top: 14px;
  }

  .navmenu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    width: auto;
    margin-top: 0;
    margin-left: 0;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 89, 89, 0.98) !important;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
  }

  .navmenu ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .navmenu li + li a {
    border-left: 0;
  }

  .navmenu a {
    justify-content: flex-start;
    min-height: 0;
    padding: 14px 0 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    background: transparent;
  }

  .navmenu a.active {
    background: transparent;
    border-bottom-color: rgba(180, 221, 225, 0.55);
  }

  .home-hero-support {
    font-size: 0.96rem;
  }

  .home-promo-grid {
    margin-top: 36px;
    margin-bottom: 0;
  }

  .home-page .hero {
    padding-bottom: 96px;
  }

  .home-who {
    padding-top: 96px;
  }

  .home-promo-card,
  .home-service-item,
  .home-quote-card,
  .home-achieve-card,
  .home-final-band {
    padding: 24px;
  }

  .home-service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-service-order {
    min-width: 0;
  }

  .home-achieve-grid {
    grid-template-columns: 1fr;
  }

  .home-final-link {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .home-hero-panel h2 {
    font-size: 1.65rem;
  }

  .home-signal-card,
  .home-principle-card {
    padding: 24px;
  }

  .home-fact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-contact-band {
    padding: 28px;
  }

  .home-contact-link {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .header.nav-open .navmenu,
  body.mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-actions,
  .btn-primary-shell,
  .btn-secondary-shell,
  .submit-btn {
    width: 100%;
  }

  .hero {
    padding-top: 140px;
  }

  .page-hero {
    padding-top: 150px;
    min-height: 360px;
  }

  .content-card,
  .home-feature-card {
    padding: 28px;
  }

  .hero-orbit-one {
    width: 340px;
    height: 340px;
  }

  .hero-orbit-two {
    width: 220px;
    height: 220px;
    right: 40px;
  }

  .section-heading h2,
  .about h2,
  .network h2,
  .contact h2 {
    font-size: 2.2rem;
  }

  .stat-card,
  .service-card,
  .copy-panel,
  .insight-card,
  .contact-shell,
  .network-panel,
  .hero-panel {
    border-radius: 22px;
  }

  .footer {
    padding-top: 72px;
  }
}
/* Office Directory IAPA Reference Style */
.office-directory-iapa {
  background: linear-gradient(135deg, #4da3a9 0%, #005959 100%);
  padding: 100px 0 !important;
  margin: 0 20px;
  border-radius: 40px;
}

.office-directory-iapa h2.section-title {
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 50px;
  margin-left: 20px;
  position: relative;
  display: inline-block;
  text-transform: none;
  font-family: var(--heading-font);
}

.office-directory-iapa h2.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.office-iapa-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.office-iapa-search-bar {
  padding: 30px 40px;
  background: #f1f8f9;
  border-bottom: 2px solid #e2eff1;
}

.office-iapa-search-bar label {
  color: #1a6f7d !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.office-iapa-search-bar .form-control,
.office-iapa-search-bar .form-select {
  background-color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 15px;
  font-size: 0.95rem;
  color: #4da3a9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.office-iapa-search-bar .form-control::placeholder {
  color: #a0ced2;
}

.office-iapa-legend {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-item i {
  font-size: 1.2rem;
}

.text-main-office { color: #b81c81; }
.text-sub-office { color: #1a6f7d; }

.office-iapa-wrapper .row.g-0 {
  min-height: 600px;
}

/* Contact CTA IAPA */
.btn-cta-iapa {
  background-color: #004d4d;
  color: #fff;
  padding: 18px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #004d4d;
}

.btn-cta-iapa:hover {
  background-color: transparent;
  color: #004d4d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 77, 77, 0.2);
}

/* IAPA Footer Styles */
.footer-title-iapa {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.footer-link-iapa {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s;
}
.footer-link-iapa:hover {
  color: white !important;
}
.footer-social-iapa {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: background 0.3s;
  text-decoration: none;
}
.footer-social-iapa:hover {
  background: #b81c81;
  color: white;
}


/* Logo Subtitle Transition */
.logo-subtitle { color: #75C7CF; transition: color 0.3s ease; }
.scrolled .logo-subtitle { color: #ffffff !important; }

