.sec-page{
  padding: 24px 0 70px;
}

.seguridad-page{
  padding-top: 24px;
  padding-bottom: 70px;
}

/* HERO */
.sec-hero{
  position: relative;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  margin: 10px auto 60px;
}

.sec-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
}

.sec-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.sec-hero-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 22px;
  color: #fff;
}

.sec-hero-content h1{
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(26px, 3.2vw, 44px);
}

.sec-hero-content p{
  margin: 0;
  max-width: 760px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

/* SECCIONES */
.sec-section{
  margin-top: 60px;
}

.sec-h2{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--text);
}

.sec-lead{
  margin: 0 auto 46px;   /* antes: 0 0 26px */
  max-width: 980px;      /* subimos un poco para pantallas grandes */
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Centrado de títulos y texto */
.sec-h2{
  text-align: center;
}

.sec-lead{
  text-align: center;
}

.sec-center{
  text-align: center;
}

.sec-sub{
  margin: 0 auto 26px;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}


/* CARDS */
.sec-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.sec-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px 28px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  text-align: center; /* estilo Home */
}

.sec-icon{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
}

.sec-card h3{
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.sec-card p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ACORDEÓN (sin JS, con <details>) */
.sec-accordion{
  margin: 18px auto 0;   /* <-- esta es la clave */
  max-width: 1200px;     /* más ancho y coherente con la página */
}
/* ACORDEÓN (más grande y acorde a los cards) */
.sec-acc{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 22px;              /* más alto */
  margin-bottom: 18px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.sec-acc-summary{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  color: var(--text);
  font-size: 1.15rem;              /* antes 13px */
  line-height: 1.2;
  padding: 6px 4px;                /* aumenta “alto” visual */
  list-style: none;
}

.sec-acc-summary::-webkit-details-marker{ display: none; }
.sec-acc-summary::marker{ content: ""; }

.sec-acc-summary i{
  transition: transform .18s ease;
  color: var(--muted);
  font-size: 1.25rem;              /* flecha más grande */
}

.sec-acc[open] .sec-acc-summary i{
  transform: rotate(180deg);
}

.sec-acc-body{
  margin-top: 14px;                /* más aire */
  padding-right: 42px;             /* para que el texto no choque con la flecha */
  font-size: 1.05rem;              /* igual que cards */
  line-height: 1.6;
  color: var(--muted);
}

/* EQUIPO */
.sec-team{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  justify-items: center;
}

.sec-member{
  text-align: center;
}

.sec-member img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  border: 5px solid #fff;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.10);
}

.sec-member-name{
  font-weight: 800;
  color: var(--text);
  font-size: 1.15rem;      /* antes 13px */
  line-height: 1.2;
}

.sec-member-role{
  margin-top: 6px;
  font-size: 1rem;         /* antes 11px */
  color: var(--blue);
}

/* CTA */
.sec-cta{
  width: 100%;
  max-width: none; /* antes lo limitaba */
  margin: 0 auto;
  background: #e9f0ff;
  border: 1px solid #dbe7ff;
  border-radius: 26px;
  padding: 64px 28px; /* más grande */
  text-align: center;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.10);
}

.sec-cta h2{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); /* similar a “Home CTA” */
  color: var(--text);
}

.sec-cta p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.sec-btn{
  display: inline-block;
  margin-top: 18px;
  padding: 14px 36px; /* botón más grande */
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.sec-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
  background: rgb(30, 75, 170); /* azul */
  color: #fff;
  border-color: rgb(30, 75, 170);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.20);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .sec-cards{ grid-template-columns: 1fr; }
  .sec-team{ grid-template-columns: repeat(2, 1fr); }
  .sec-hero{ height: 420px; }  /* tablet */
}

@media (max-width: 520px){
  .sec-team{ grid-template-columns: 1fr; }
  .sec-hero{ height: 320px; }  /* celular */
}


