.swz-nosotros-main {
  --swz-blue: #2477e8;
  --swz-blue-dark: #18345c;
  --swz-blue-light: #eaf3ff;
  --swz-text: #263957;
  --swz-muted: #718096;
  --swz-border: #e4edf8;
  --swz-white: #ffffff;

  background: #ffffff;
  color: var(--swz-text);
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px 70px;

  /* --- FONDO CON IMAGEN Y DEGRADADOS --- */
  background-image:
    radial-gradient(
      ellipse at 0% 20%,
      rgba(160, 30, 255, 0.24),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 100% 65%,
      rgba(0, 136, 255, 0.17),
      transparent 45%
    ),
    /* Una capa oscura transparente para que el texto siga siendo legible sobre la imagen */
    linear-gradient(
        135deg,
        rgba(5, 8, 22, 0.648),
        rgba(16, 16, 53, 0.493) 50%,
        rgba(7, 11, 36, 0.596)
      ),
    /* TU IMAGEN DE FONDO AQUÍ 👇 */
    url("https://rankiapro.com/es/media/2019/08/fondo-tecnologico-preferido-selectores.jpg");

  /* Ajustes para que la imagen cubra toda la sección */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--swz-text);
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
}

.swz-nosotros-main *,
.swz-nosotros-main *::before,
.swz-nosotros-main *::after {
  box-sizing: border-box;
}

.swz-nosotros-main a {
  text-decoration: none;
}

.swz-nosotros-main img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   HERO
   ========================================================= */

.swz-nosotros-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 95px 30px 85px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 65px;
}

.swz-nosotros-hero-content {
  animation: swz-nosotros-fade-up 0.8s ease both;
}

.swz-nosotros-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 50px;
  background: var(--swz-blue-light);
  color: var(--swz-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.swz-nosotros-hero h1 {
  margin: 25px 0 22px;
  color: var(--swz-blue-light);
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.15;
  letter-spacing: -1.6px;
  font-weight: 800;
}

.swz-nosotros-hero h1 span {
  display: block;
  color: var(--swz-blue);
}

.swz-nosotros-hero p {
  color: var(--swz-border);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.swz-nosotros-intro {
  font-weight: 500;
}

.swz-nosotros-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.swz-nosotros-btn-primary,
.swz-nosotros-btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 14px 21px;
  border-radius: 12px;
  font-size: 0.83rem;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.swz-nosotros-btn-primary {
  background: var(--swz-blue);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(36, 119, 232, 0.16);
}

.swz-nosotros-btn-secondary {
  color: var(--swz-blue-dark);
  border: 1px solid var(--swz-border);
  background: #ffffff;
}

.swz-nosotros-btn-primary:hover,
.swz-nosotros-btn-secondary:hover {
  transform: translateY(-3px);
}

.swz-nosotros-btn-primary:hover {
  background: #1765d0;
  box-shadow: 0 12px 28px rgba(36, 119, 232, 0.25);
}

.swz-nosotros-btn-secondary:hover {
  border-color: var(--swz-blue);
  color: var(--swz-blue);
}

/* =========================================================
   IMAGEN Y CREADOR
   ========================================================= */

.swz-nosotros-hero-visual {
  min-width: 0;
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: swz-nosotros-fade-in 1s ease both;
}

.swz-nosotros-decor-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #edf5ff;
  z-index: 0;
}

.swz-nosotros-image-frame {
  width: min(100%, 370px);
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 45% 45% 22px 22px;
  border: 9px solid #ffffff;
  box-shadow: 0 18px 55px rgba(40, 78, 125, 0.13);
  background: #dbeafe;
}

.swz-nosotros-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.swz-nosotros-image-frame:hover img {
  transform: scale(1.04);
}

.swz-nosotros-creator-badge {
  position: absolute;
  bottom: 27px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px 13px 13px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(39, 71, 112, 0.15);
}

.swz-nosotros-badge-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--swz-blue);
}

.swz-nosotros-creator-badge strong,
.swz-nosotros-creator-badge small {
  display: block;
}

.swz-nosotros-creator-badge strong {
  color: var(--swz-blue-dark);
  font-size: 0.79rem;
}

.swz-nosotros-creator-badge small {
  margin-top: 4px;
  color: var(--swz-muted);
  font-size: 0.66rem;
}

.swz-nosotros-floating-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: var(--swz-blue);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(35, 72, 116, 0.13);
  animation: swz-nosotros-float 4s ease-in-out infinite;
}

.swz-nosotros-float-one {
  top: 42px;
  right: 15px;
}

.swz-nosotros-float-two {
  bottom: 95px;
  right: -3px;
  color: #ed6f99;
  animation-delay: 1s;
}

/* =========================================================
   ENCABEZADOS
   ========================================================= */

.swz-nosotros-section-heading {
  max-width: 670px;
  margin: 0 auto 42px;
  text-align: center;
}

.swz-nosotros-section-heading > span,
.swz-nosotros-card-label {
  color: var(--swz-blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.swz-nosotros-section-heading h2,
.swz-nosotros-story-card h2,
.swz-nosotros-founder-card h2,
.swz-nosotros-location-section h2,
.swz-nosotros-cta-section h2 {
  color: var(--swz-blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.3;
  margin: 13px 0 15px;
  letter-spacing: -0.6px;
}

.swz-nosotros-section-heading p {
  color: var(--swz-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* =========================================================
   VALORES
   ========================================================= */

.swz-nosotros-values-section {
  padding: 75px 30px;
  background: #f8fbff;
}

.swz-nosotros-values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.swz-nosotros-value-card {
  padding: 30px 24px;
  background: #ffffff;
  border: 1px solid var(--swz-border);
  border-radius: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.swz-nosotros-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(32, 75, 125, 0.08);
}

.swz-nosotros-value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 14px;
  color: var(--swz-blue);
  background: var(--swz-blue-light);
  font-size: 1.1rem;
}

.swz-nosotros-value-card h3 {
  margin: 0 0 12px;
  color: var(--swz-blue-dark);
  font-size: 0.98rem;
}

.swz-nosotros-value-card p {
  margin: 0;
  color: var(--swz-muted);
  font-size: 0.79rem;
  line-height: 1.8;
}

/* =========================================================
   HISTORIA Y FUNDADOR
   ========================================================= */

.swz-nosotros-story-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.swz-nosotros-story-card,
.swz-nosotros-founder-card {
  padding: 38px;
  border: 1px solid var(--swz-border);
  border-radius: 23px;
  background: #ffffff;
}

.swz-nosotros-story-card {
  background: #f5f9ff;
}

.swz-nosotros-story-icon,
.swz-nosotros-founder-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--swz-blue);
  background: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 25px;
}

.swz-nosotros-story-card p,
.swz-nosotros-founder-card p {
  color: var(--swz-muted);
  font-size: 0.85rem;
  line-height: 1.9;
  margin: 0 0 15px;
}

.swz-nosotros-story-quote {
  margin-top: 25px;
  padding-left: 17px;
  border-left: 3px solid var(--swz-blue);
  color: var(--swz-blue);
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
}

.swz-nosotros-founder-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.swz-nosotros-founder-top .swz-nosotros-founder-symbol {
  margin-bottom: 0;
}

.swz-nosotros-founder-card h2 {
  margin-top: 23px;
}

.swz-nosotros-founder-card strong {
  color: var(--swz-blue-dark);
}

.swz-nosotros-founder-signature {
  margin-top: 28px;
  color: var(--swz-blue-dark);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
  font-style: italic;
}

.swz-nosotros-founder-role {
  display: block;
  margin-top: 3px;
  color: var(--swz-muted);
  font-size: 0.68rem;
}

/* =========================================================
   UBICACIÓN
   ========================================================= */

.swz-nosotros-location-section {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 38px;
  border-radius: 24px;
  background: #edf5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.swz-nosotros-location-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.swz-nosotros-location-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--swz-blue);
  font-size: 1.25rem;
}

.swz-nosotros-location-section h2 {
  font-size: 1.55rem;
  margin-top: 10px;
}

.swz-nosotros-location-section p {
  max-width: 570px;
  color: var(--swz-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.swz-nosotros-location-details {
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-width: 220px;
}

.swz-nosotros-location-details div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
}

.swz-nosotros-location-details i {
  grid-row: span 2;
  color: var(--swz-blue);
  font-size: 1.1rem;
  padding-top: 2px;
}

.swz-nosotros-location-details strong {
  color: var(--swz-blue-dark);
  font-size: 0.8rem;
}

.swz-nosotros-location-details span {
  margin-top: 5px;
  color: var(--swz-muted);
  font-size: 0.7rem;
}

/* =========================================================
   CTA
   ========================================================= */

.swz-nosotros-cta-section {
  max-width: 1140px;
  margin: 0 auto 70px;
  padding: 45px;
  border: 1px solid var(--swz-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.swz-nosotros-cta-section h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.swz-nosotros-cta-section p {
  max-width: 550px;
  margin: 0;
  color: var(--swz-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

/* =========================================================
   FOOTER
   ========================================================= */

/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes swz-nosotros-fade-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swz-nosotros-fade-in {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes swz-nosotros-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
  .swz-nosotros-hero {
    gap: 35px;
  }

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

  .swz-nosotros-location-section {
    margin-left: 30px;
    margin-right: 30px;
  }

  .swz-nosotros-cta-section {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (max-width: 800px) {
  .swz-nosotros-hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 60px;
    text-align: center;
  }

  .swz-nosotros-eyebrow,
  .swz-nosotros-hero-actions {
    justify-content: center;
  }

  .swz-nosotros-hero h1 span {
    display: inline;
  }

  .swz-nosotros-hero-visual {
    min-height: 400px;
    margin-top: 10px;
  }

  .swz-nosotros-image-frame {
    width: min(100%, 340px);
  }

  .swz-nosotros-creator-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .swz-nosotros-story-section {
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .swz-nosotros-location-section {
    flex-direction: column;
    align-items: stretch;
  }

  .swz-nosotros-location-details {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .swz-nosotros-cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .swz-nosotros-hero {
    padding: 45px 20px 50px;
  }

  .swz-nosotros-hero h1 {
    font-size: 2.15rem;
    letter-spacing: -0.9px;
  }

  .swz-nosotros-hero p {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  .swz-nosotros-hero-actions {
    flex-direction: column;
  }

  .swz-nosotros-btn-primary,
  .swz-nosotros-btn-secondary {
    width: 100%;
  }

  .swz-nosotros-hero-visual {
    min-height: 350px;
  }

  .swz-nosotros-decor-circle {
    width: 280px;
    height: 280px;
  }

  .swz-nosotros-image-frame {
    width: min(100%, 285px);
  }

  .swz-nosotros-creator-badge {
    bottom: 13px;
    padding: 10px 13px 10px 10px;
  }

  .swz-nosotros-values-section {
    padding: 55px 20px;
  }

  .swz-nosotros-values-grid {
    grid-template-columns: 1fr;
  }

  .swz-nosotros-value-card {
    padding: 25px;
  }

  .swz-nosotros-story-section {
    padding: 55px 20px;
  }

  .swz-nosotros-story-card,
  .swz-nosotros-founder-card {
    padding: 27px 23px;
  }

  .swz-nosotros-location-section {
    margin: 0 20px 55px;
    padding: 27px 22px;
  }

  .swz-nosotros-location-content {
    flex-direction: column;
    gap: 15px;
  }

  .swz-nosotros-location-details {
    flex-direction: column;
    gap: 18px;
  }

  .swz-nosotros-cta-section {
    margin: 0 20px 50px;
    padding: 30px 23px;
  }

  .swz-nosotros-cta-section h2 {
    font-size: 1.45rem;
  }

  .swz-nosotros-floating-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swz-nosotros-main *,
  .swz-nosotros-main *::before,
  .swz-nosotros-main *::after {
    animation: none !important;
    transition: none !important;
  }
}
