/* ============================================================
   Osmium Solutions — estilos compartidos
   Basado en el prototipo de Figma (archivo "Osmium")
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;600;700&family=Poppins:ital,wght@1,300&display=swap');

:root {
  --color-primary: #003366;
  --color-white: #ffffff;
  --color-text-light: #333333;
  --color-text: #222222;
  --color-gray-light: #f3f3f3;
  --color-gray-dark: #666666;
  --color-link: #509ee3;
  --color-tertiary: #492f46;
  --color-card-bg: #d9d9d9;

  --font-heading: 'League Spartan', sans-serif;
  --font-body: 'League Spartan', sans-serif;
  --font-quote: 'Poppins', sans-serif;

  --max-width: 1280px;
  --content-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- Aparición al hacer scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { padding-left: 1.25rem; }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--color-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 64px;
}

.site-header .logo img { height: 44px; }

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.site-header nav a:hover { opacity: 0.7; }
.site-header nav a:hover,
.site-header nav a.active {
  border-bottom-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  margin: 5px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 902px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 24px;
}
.hero-content p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 32px;
}
.hero-content h1,
.hero-content p,
.hero-content .btn-primary {
  opacity: 0;
  animation: hero-fade-up 0.8s ease-out forwards;
}
.hero-content h1 { animation-delay: 0.1s; }
.hero-content p { animation-delay: 0.35s; }
.hero-content .btn-primary { animation-delay: 0.6s; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content h1, .hero-content p, .hero-content .btn-primary {
    animation: none;
    opacity: 1;
  }
}

/* ---------- Botones ---------- */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary:hover { opacity: 0.9; }

.btn-primary.small {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
}

/* ---------- Títulos de sección ---------- */
.section-title {
  text-align: center;
  margin: 0 auto 16px;
  max-width: 900px;
}
.section-title h2 {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-light);
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 0 0 16px;
}
.section-title p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

section { padding: 56px 0; }
section.tight { padding: 40px 0; }
#inicio, #nosotros, #servicios, #casos-exito, #clientes, #contacto { scroll-margin-top: 64px; }

/* ---------- Nosotros ---------- */
.nosotros {
  position: relative;
  overflow: hidden;
}
.nosotros::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  background: url('../assets/nosotros-fondo.png') no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}
.nosotros .container {
  position: relative;
  z-index: 1;
}
.nosotros p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto 1em;
}

.team-link-wrap { text-align: center; margin-top: 24px; }
.team-link {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
}
.team-link:hover { border-color: var(--color-primary); }

/* ---------- Servicios ---------- */
.servicios-carousel { position: relative; margin-top: 32px; }
.servicios-track {
  position: relative;
  height: 400px;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
}
.card-service {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  background: var(--color-gray-light);
  border: none;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  overflow: hidden;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, box-shadow 0.25s ease;
}
.card-service:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); }
.card-service[aria-selected="true"] { box-shadow: 0 16px 40px rgba(0, 51, 102, 0.25); }
.card-service img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}
.card-service h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  margin: 16px 0 8px;
}
.card-service p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding: 0 24px 24px;
  margin: 0;
}
.servicios-counter { text-align: center; margin-top: 8px; }
.servicios-counter .num { font-size: 34px; font-weight: 700; color: var(--color-primary); }
.servicios-counter .of { display: block; font-size: 13px; font-weight: 300; color: var(--color-gray-dark); margin-top: 2px; }
.servicios-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.servicios-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.servicios-dots .dot.active { width: 22px; background: var(--color-primary); }

/* ---------- Casos de Éxito ---------- */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.card-caso {
  display: block;
}
.card-caso .caso-img {
  position: relative;
  height: 216px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--color-card-bg);
}
.card-caso .caso-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-caso .caso-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.card-caso .caso-img span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  width: 80%;
}
.card-caso .cliente {
  text-align: center;
  font-size: 16px;
  color: var(--color-gray-dark);
  margin-top: 12px;
}
.card-caso .cliente strong { color: var(--color-gray-dark); }
.card-caso:hover .caso-img::after { background: rgba(0, 51, 102, 0.55); }

/* ---------- Clientes (logos) ---------- */
.logos-marquee {
  overflow: hidden;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logos-marquee 28s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logos-track img {
  height: 130px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(1);
}
.logos-track img.logo-small {
  height: 96px;
  padding: 14px 20px;
  box-sizing: border-box;
  background: #e8e8e8;
  border-radius: 8px;
}
@keyframes logos-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

/* ---------- Testimonios ---------- */
.testimonios-section { background: var(--color-gray-light); }
.testimonios-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonios-track::-webkit-scrollbar { display: none; }
.testimonio {
  scroll-snap-align: start;
  flex: 0 0 389px;
  text-align: center;
  padding: 16px;
}
.testimonio img { margin: 0 auto 16px; width: 200px; height: 85px; object-fit: contain; }
.testimonio blockquote {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 16px;
}
.testimonio .autor {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin: 0 0 4px;
}
.testimonio .cargo {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-gray-dark);
  margin: 0;
}

.testimonios-carousel { position: relative; max-width: var(--max-width); margin: 0 auto; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--color-primary); color: var(--color-white); }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
@media (max-width: 720px) {
  .carousel-arrow { width: 36px; height: 36px; font-size: 20px; }
}

/* ---------- Newsletter strip ---------- */
.newsletter-strip {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-link);
  padding: 24px 40px 0;
  max-width: var(--content-width);
  margin: 0 auto;
}
a.newsletter-strip:hover { opacity: 0.75; }

/* ---------- Formulario de contacto ---------- */
.contacto-form {
  max-width: 592px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacto-form label {
  display: block;
  font-size: 11px;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  background: var(--color-gray-light);
  border: none;
  border-bottom: 1px solid var(--color-primary);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 4px 0;
}
.contacto-form .field {
  background: var(--color-gray-light);
  padding: 8px;
  border-radius: 2px;
}
.contacto-form textarea {
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  padding: 8px;
  min-height: 144px;
  resize: vertical;
  background: transparent;
}
.contacto-form .submit-wrap { text-align: center; margin-top: 8px; }
.contacto-form .form-msg {
  text-align: center;
  font-size: 16px;
  margin-top: 8px;
}
.contacto-form .form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contacto-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-tertiary);
  color: var(--color-white);
  padding: 48px 0;
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
  padding: 0 40px;
}
.footer-logo { text-align: center; max-width: 464px; }
.footer-logo img { height: 176px; margin: 0 auto 16px; filter: brightness(0) invert(1); }
.footer-logo p { font-size: 16px; font-weight: 300; margin: 0; }
.footer-copy {
  flex-basis: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.65;
  margin: 8px 0 0;
}
.footer-services { text-align: center; width: 220px; max-width: 100%; padding-top: 40px; }
.footer-services h4 { font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.footer-services ul { list-style: none; padding: 0; margin: 0; }
.footer-services li { font-size: 14px; font-weight: 300; margin-bottom: 12px; }
.footer-contact { text-align: center; width: 360px; max-width: 100%; padding-top: 40px; }
.footer-contact h4 { font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; display: inline-block; text-align: left; }
.footer-contact li { margin-bottom: 14px; }
.footer-contact li:last-child { margin-bottom: 0; }
.footer-contact a { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 300; color: var(--color-white); white-space: nowrap; transition: opacity 0.2s ease; }
.footer-contact a:hover { opacity: 0.75; }
.footer-contact img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.footer-contact li:not(:first-child) a { text-decoration: none; }
.footer-contact li:not(:first-child) a:hover { text-decoration: underline; opacity: 1; }

/* ---------- Página de equipo ---------- */
.team-hero { background: var(--color-primary); color: var(--color-white); text-align: center; padding: 48px 0 16px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 40px;
}
.card-team {
  background: var(--color-white);
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-team:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.card-team .photo-wrap {
  background: rgba(0, 51, 102, 0.75);
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  position: relative;
}
.card-team .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.card-team .photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  mix-blend-mode: color;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.card-team:hover .photo-wrap img { transform: scale(1.08); filter: grayscale(0) contrast(1); }
.card-team:hover .photo-wrap::after { opacity: 0; }
.card-team h3 {
  font-size: 32px;
  color: var(--color-primary);
  margin: 24px 0 8px;
  transition: letter-spacing 0.4s ease;
}
.card-team:hover h3 { letter-spacing: 0.5px; }
.card-team .rol { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.card-team .especialidad { font-size: 20px; font-weight: 300; margin: 0; }
@media (hover: hover) and (pointer: fine) {
  .card-team .especialidad {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .card-team:hover .especialidad { opacity: 1; transform: translateY(0); }
}
.team-cta { text-align: center; padding: 32px 0 64px; }

/* ---------- Página de caso de éxito ---------- */
.caso-banner {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 36px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.caso-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0, 51, 102, 0.55); }
.caso-banner > * { position: relative; z-index: 1; }
.caso-banner .eyebrow { font-weight: 700; font-size: 24px; margin: 0 0 8px; }
.caso-banner h1 { font-weight: 300; font-size: 20px; margin: 0; }

.caso-body {
  display: grid;
  grid-template-columns: 389px 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
}
.caso-body .caso-media img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 24px;
}
.caso-datos { display: flex; flex-direction: column; gap: 16px; font-size: 14px; color: var(--color-text-light); }
.caso-datos .dato { display: flex; gap: 8px; align-items: flex-start; }
.caso-datos .dato strong { color: var(--color-text-light); }
.caso-datos .cta-wrap { margin-top: 8px; }

.caso-text h2 { font-size: 18px; color: var(--color-text-light); margin: 0 0 12px; }
.caso-text h3 { font-size: 16px; color: var(--color-text-light); margin: 24px 0 8px; }
.caso-text p, .caso-text li { font-size: 16px; font-weight: 300; color: var(--color-text-light); line-height: 1.6; }
.caso-text ul, .caso-text ol { margin: 0 0 16px; }

.caso-cta-strip {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px 48px;
}
.caso-cta-strip .lead { font-weight: 700; font-size: 18px; }
.caso-cta-strip .link { color: var(--color-link); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.card-blog { display: block; }
.card-blog .blog-img {
  position: relative;
  height: 216px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--color-card-bg);
}
.card-blog .blog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card-blog:hover .blog-img img { transform: scale(1.05); }
.card-blog .blog-categoria {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-link);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-blog h3 { font-size: 20px; margin: 8px 0 4px; }
.card-blog .blog-fecha { font-size: 14px; color: var(--color-gray-dark); margin: 0; }
.card-blog .blog-excerpt { font-size: 15px; font-weight: 300; color: var(--color-text-light); line-height: 1.5; margin: 8px 0 0; }

.blog-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 8px;
}
.blog-article-body .blog-meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-link);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.blog-article-body .blog-fecha { font-size: 14px; color: var(--color-gray-dark); margin: 0 0 24px; }
.blog-article-body img.blog-cover { width: 100%; border-radius: 6px; margin-bottom: 32px; }
.blog-article-body .lead { font-size: 18px; font-weight: 400; color: var(--color-text); margin-bottom: 24px; }
.blog-article-body h2 { font-size: 22px; color: var(--color-text-light); margin: 32px 0 12px; }
.blog-article-body h3 { font-size: 18px; color: var(--color-text-light); margin: 24px 0 8px; }
.blog-article-body p, .blog-article-body li { font-size: 16px; font-weight: 300; color: var(--color-text-light); line-height: 1.7; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 16px; }
.blog-article-body a:not(.btn-primary) { color: var(--color-link); text-decoration: underline; }
.blog-back { display: inline-block; margin: 0 0 24px; color: var(--color-link); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .casos-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .caso-body { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header nav { display: none; }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--color-primary);
    padding: 40px;
    overflow-y: auto;
  }
  .site-header nav.open a {
    color: var(--color-white);
    font-size: 26px;
  }
  .site-header nav.open a:hover,
  .site-header nav.open a.active {
    border-bottom-color: var(--color-white);
  }
  .nav-toggle { display: block; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 18px; }
  .casos-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .card-service { width: 190px; }
  .card-service img { height: 86px; }
  .card-service h3 { font-size: 18px; margin: 10px 0 6px; }
  .card-service p { font-size: 13px; padding: 0 10px 14px; }
  .footer-inner { gap: 48px; }
  .footer-contact a { white-space: normal; overflow-wrap: break-word; }
  .nosotros::before { display: none; }
  .nosotros-text { position: relative; }
  .nosotros-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%);
    background: url('../assets/nosotros-fondo.png') no-repeat center / contain;
    z-index: 0;
    pointer-events: none;
  }
  .nosotros-text p {
    position: relative;
    z-index: 1;
  }
}
