* {
  box-sizing: border-box;
}

html,body{overflow-x:hidden;}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: #333;
}

/* ===== BARRA DE NAVEGACIÓN ===== */

.barra-navegadora{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0664ad;
    padding: 15px 30px;
    border-radius: 40px;
    margin: 20px;
    font-size: 30px;
}

.nav-grupo{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 0;
}
.nav-izquierda{ justify-content: flex-start; }
.nav-derecha{ justify-content: flex-end; }
.barra-navegadora .logo{ flex: none; }

.barra-navegadora a{
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.barra-navegadora a:not(.logo):hover{
    background-color: #f1f1f1;
    color: #06487a;
    font-size: 45px;
}

.barra-navegadora .logo img{
    height: 60px;
    transition: all 0.3s;
    font-size: 45px;

}

.logo-colegio{
    margin-left: 16px;
}

.logo-colegio img{
    border-radius: 50%;
}

@media (max-width: 1024px){
  .barra-navegadora{
    padding: 10px 15px;
    border-radius: 20px;
    margin: 10px;
    font-size: 14px;
  }
  .barra-navegadora a{ padding: 4px 8px; font-size: 13px; }
  .barra-navegadora a:not(.logo):hover{ font-size: 13px; }
  .barra-navegadora .logo img{ height: 35px; }
  .logo-colegio{ margin-left: 10px; }
}

@media (max-width: 600px){
  .barra-navegadora{
    padding: 8px 10px;
    font-size: 12px;
  }
  .barra-navegadora a{ padding: 3px 6px; font-size: 11px; }
  .logo-colegio{ margin-left: 6px; }
}

/* =========================================================
   Acoso-escolar.css
   Estilos para Acoso-escolar.html según el diseño de referencia
   ========================================================= */

:root{
  --azul: #1668AC;
  --azul-titulo: #1B5C99;
  --azul-oscuro: #16324F;
  --texto: #222222;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: #F7FAFC;
}

img{ max-width: 100%; display: block; }



/* ============== HERO: #acoso-escolar ============== */
.acoso-escolar{
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px 70px 70px;
  flex-wrap: wrap;
}
.acoso-escolar-texto{ flex: 1 1 420px; }
.acoso-escolar-texto h1{
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 500px;
  font-size: 4.3rem;
}
/* Envuelve "cargar solo" en <span class="acento"> dentro del h1
   para que quede en azul cursivo, igual que en la referencia */
.acoso-escolar-texto h1 .acento{
  color: var(--azul);
  font-style: italic;
  font-size: 4.3rem; 
}

.acoso-escolar-texto p{
  font-size: 2.5rem;
  line-height: 1.55;
  color: var(--texto);
  max-width: 58ch;
  margin-top: -450px;
}
.acoso-escolar-imagen{
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  margin-top: -50px;
}
.acoso-escolar-imagen img{ max-width: 420px; }

@media (max-width: 1024px){
  .acoso-escolar-texto h1{
    margin: 0 0 20px;
    font-size: 3.2rem;
  }
  .acoso-escolar-texto h1 .acento{ font-size: 3.2rem; }
  .acoso-escolar-texto p{
    margin-top: 0;
    font-size: 1.8rem;
  }
  .acoso-escolar-imagen{ margin-top: 0; }
  .acoso-escolar-imagen img{ max-width: 320px; }
}

@media (max-width: 760px){
  .acoso-escolar{ padding: 34px 24px; text-align: center; }
  .acoso-escolar-texto h1{
    font-size: 2.6rem;
    text-align: center;
  }
  .acoso-escolar-texto h1 .acento{ font-size: 2.6rem; }
  .acoso-escolar-texto p{
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .acoso-escolar-imagen{ justify-content: center; }
  .acoso-escolar-imagen img{ max-width: 240px; }
}

/* ============== NOTAS: #notas ============== */
.notas{
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  grid-template-areas:
    "img mid right1"
    "img mid right2";
  align-items: center;
  gap: 30px 50px;
  padding: 60px 70px 80px;
  background: #EAF3FB;
}
.imagen-notas{ grid-area: img; }
.imagen-notas img{ 
   max-width: 500px;
   margin: 0 auto;
   transform: translateX(-80px); }
.nota-3{ grid-area: mid; }
.nota-1{ grid-area: right1; }
.nota-2{ grid-area: right2; }
.notas h2{
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  color: var(--azul-titulo);
  font-size: 4.2rem;
  margin: 0 0 8px;
  line-height: 1;
}
.notas p{
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.4;
  color: var(--texto);
}
@media (max-width: 1024px){
  .notas{
    grid-template-columns: 200px 1fr 1fr;
    gap: 20px 30px;
    padding: 40px 40px 60px;
  }
  .imagen-notas img{
    max-width: 100%;
    transform: none;
  }
  .notas h2{ font-size: 3.2rem; }
  .notas p{ font-size: 1.6rem; }
}

@media (max-width: 820px){
  .notas{
    grid-template-columns: 1fr;
    grid-template-areas: "img" "mid" "right1" "right2";
    text-align: center;
    padding: 40px 24px;
  }
  .imagen-notas img{
    margin: 0 auto;
    transform: none;
    max-width: 260px;
  }
}

@media (max-width: 600px){
  .notas h2{ font-size: 2.6rem; }
  .notas p{ font-size: 1.3rem; }
}

/* ============== QUE ES: #que-es ============== */
.que-es{ padding: 60px 70px 80px; }
.que-es-el-acoso h2{
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
  font-size: clamp(3rem, 5.6vw, 4.2rem);
  color: var(--azul-oscuro);
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 3px solid #0664ad;
}
.que-es h2 .azul {
  color: var(--azul);
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
  font-size: 4.3rem; 

}

.video{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.video video{
  width: min(960px, 100%);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

@media (max-width: 700px){
  .que-es{ padding: 40px 24px 50px; }
  .que-es-el-acoso h2{ font-size: 2.2rem; }
  .que-es h2 .azul{ font-size: 2.2rem; }
}

/* ============== COMO SOLUCIONARLO ============== */
.como-solucionarlo{
  padding: 70px 70px 90px;
  background: var(--azul-oscuro);
}
.como-solucionarlo-texto{
  max-width: 900px;
  margin: 0 auto;
}
.como-solucionarlo-titulo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 40px;
}
.como-solucionarlo-titulo .linea-solucion{
  height: 2px;
  flex: 1;
  max-width: 120px;
  background: var(--azul-titulo);
  opacity: .55;
}
.como-solucionarlo-texto h2{
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  margin: 0;
  white-space: nowrap;
}
.como-solucionarlo-texto p{
  font-size: 2.5rem;
  line-height: 1.6;
  color: #DCEAF6;
  margin: 0 0 20px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}
.como-solucionarlo-texto ol{
  list-style: decimal;
  padding-left: 26px;
  margin: 0;
}
.como-solucionarlo-texto li{
  font-size: 2rem;
  line-height: 1.6;
  color: #DCEAF6;
  margin-bottom: 22px;
}
.como-solucionarlo-texto li strong{
  color: #ffffff;
}

@media (max-width: 700px){
  .como-solucionarlo{ padding: 20px 24px 60px; }
  .como-solucionarlo-texto h2{ font-size: 1.8rem; }
  .como-solucionarlo-texto h2::before,
  .como-solucionarlo-texto h2::after{
    width: 40px;
    margin: 0 12px;
  }
  .como-solucionarlo-texto p{ font-size: 1.4rem; }
  .como-solucionarlo-texto li{ font-size: 1.15rem; }
}



.tipos-bullying{
  padding: 30px 70px 100px;
}
 
.tipos-bullying-titulo{
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin: 0 0 50px;
}
.tipos-bullying-titulo .linea-tipos{
height: 2px;
flex: 1;
max-width: 160px;
background: var(--azul-titulo);
opacity: .5;
}
.tipos-bullying-titulo h2{
font-family: 'Times New Roman', Times, serif;
font-style: italic;
font-weight: 700;
color: var(--azul-titulo);
font-size: clamp(2.6rem, 4.4vw, 4.3rem);
margin: 0;
white-space: nowrap;
text-align: center;
}
 
.tarjetas-tipos{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 30px;
}
 
.tarjeta-tipo{
background: #ffffff;
border-radius: 20px;
padding: 36px 28px;
text-align: center;
border: 1px solid #EAF0F5;
box-shadow: 0 10px 26px rgba(20, 60, 100, 0.08);
transition: transform .25s ease, box-shadow .25s ease;
}
.tarjeta-tipo:hover{
transform: translateY(-6px);
box-shadow: 0 18px 34px rgba(20, 60, 100, 0.16);
}
 
.icono-tipo{
width: 74px;
height: 74px;
margin: 0 auto 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: var(--fondo-tipo, #EAF3FB);
color: var(--color-tipo, var(--azul));
}
.icono-tipo svg{ width: 34px; height: 34px; }
 
.tarjeta-tipo h3{
font-family: 'Times New Roman', Times, serif;
font-weight: 700;
font-size: 1.3rem;
color: var(--azul-oscuro);
margin: 0 0 12px;
}
.tarjeta-tipo p{
font-size: 1rem;
line-height: 1.55;
color: var(--texto);
margin: 0;
}
 
/* Acento de color por tipo */
.tipo-fisico   { --color-tipo: #1668AC; --fondo-tipo: #EAF3FB; }
.tipo-verbal   { --color-tipo: #4C9A5B; --fondo-tipo: #EAF6EC; }
.tipo-social   { --color-tipo: #E8A93B; --fondo-tipo: #FCF2DE; }
.tipo-digital  { --color-tipo: #C24B4B; --fondo-tipo: #FBEAEA; }
 
.tarjeta-tipo:hover .icono-tipo{
background: var(--color-tipo);
color: #ffffff;
transition: background .25s ease, color .25s ease;
}
 
@media (max-width: 1024px){
  .tipos-bullying{ padding: 30px 40px 80px; }
  .tipos-bullying-titulo h2{ font-size: 2.4rem; }
}

@media (max-width: 700px){
.tipos-bullying{ padding: 20px 24px 70px; }
.tipos-bullying-titulo .linea-tipos{ max-width: 36px; }
.tipos-bullying-titulo h2{ white-space: normal; font-size: 1.9rem; }
.tarjeta-tipo{ padding: 28px 22px; }
}

/* ============== PONER EN PRÁCTICA (CTA) ============== */
.poner-en-practica{
  text-align: center;
  padding: 80px 40px 100px;
  background: linear-gradient(135deg, var(--azul-oscuro), var(--azul) 65%, #2C86C7);
  border-radius: 28px;
  margin: 0 70px 80px;
  color: #ffffff;
}
.poner-en-practica h2{
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin: 0 0 14px;
}
.poner-en-practica p{
  font-size: 1.15rem;
  color: #E4EEF6;
  max-width: 50ch;
  margin: 0 auto 34px;
  line-height: 1.5;
}
 
.btn-practica{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: var(--azul-oscuro);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 40px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-practica svg{
  transition: transform .2s ease;
}
.btn-practica:hover{
  background: #E8A93B;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
}
.btn-practica:hover svg{
  transform: translateX(4px);
}
.btn-practica:active{
  transform: translateY(0);
}
 
@media (max-width: 700px){
  .poner-en-practica{ margin: 0 20px 60px; padding: 56px 24px 70px; }
  .poner-en-practica h2{ font-size: 1.5rem; }
  .poner-en-practica p{ font-size: 1rem; }
  .btn-practica{
    font-size: 1rem;
    padding: 14px 26px;
  }
}

.foot{
  text-align: center;
  padding: 26px 24px 40px;
  color: #6B7A70;
  font-size: 0.85rem;
  display: flex;
  gap: 8px;
  justify-content: center;
}