:root {
  --azul: #0a3d62;
  --dorado: #c9a227;
  --sombra: 0 10px 25px rgba(0,0,0,.08);
  --gris-texto: #6b7280;
  --fondo-claro: #f8fafc;
}

/* =========================================
LOGO
========================================= */

.logo-recursos{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#03152f;
  padding:0;
  overflow:hidden;
}

.logo-recursos img{
  display:block;
  width:100%;
  max-width:450px;
  height:auto;
  margin:0 auto;
}

/* =========================================
BANNER
========================================= */


.banner-recursos{
  padding:0;
  background:#03152f;
  text-align:center;
}


.banner-recursos h1 {
  font-size: 2.2rem;
  color: var(--azul);
  margin-bottom: 12px;
  font-weight: 700;
}
.banner-recursos p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gris-texto);
  max-width: 850px;
  margin: 0 auto;
}

/* Botón Solicitar Asesoría arriba derecha del banner */
.banner-recursos .btn-principal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dorado);
  color: #fff;
  padding: 10px 25px; /* corto */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}
.banner-recursos .btn-principal:hover {
  background: var(--azul);
}

/* =========================================
SECCIONES
========================================= */
.accesos-rapidos,
.herramientas,
.ayuda-empresarial {
  padding: 50px 0;
}
.accesos-rapidos h2,
.herramientas h2,
.ayuda-empresarial h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--azul);
  font-size: 2rem;
}

/* =========================================
GRID ACCESOS
========================================= */
.grid-accesos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.acceso-card {
  background: #fff;
  padding: 25px 18px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  border: 1px solid #eef1f5;
  transition: .3s;
}
.acceso-card:hover {
  transform: translateY(-4px);
  border-color: var(--dorado);
}
.acceso-card i {
  font-size: 32px;
  color: var(--dorado);
  margin-bottom: 12px;
}
.acceso-card h3 {
  color: var(--azul);
  margin-bottom: 8px;
  font-size: 1rem;
}
.acceso-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--gris-texto);
}

/* =========================================
HERRAMIENTAS
========================================= */
.herramientas {
  background: var(--fondo-claro);
}
.grid-herramientas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.herramienta-card {
  background: #fff;
  padding: 25px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  text-decoration: none;
  display: block;
  transition: .3s;
}
.herramienta-card:hover {
  transform: translateY(-4px);
  border: 1px solid var(--dorado);
}
.herramienta-card i {
  font-size: 36px;
  color: var(--dorado);
  margin-bottom: 12px;
}
.herramienta-card h3 {
  font-size: 1.25rem;
  color: var(--azul);
  margin-bottom: 8px;
}
.herramienta-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gris-texto);
}

/* =========================================
AYUDA EMPRESARIAL
========================================= */
.ayuda-empresarial h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--azul);
  margin-bottom: 20px;
}
.ayuda-empresarial p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--gris-texto);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}
.ayuda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}
.ayuda-grid div {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  border-left: 4px solid var(--dorado);
}
.ayuda-grid h3 {
  color: var(--azul);
  margin-bottom: 8px;
  font-size: 1rem;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px) {
  .grid-accesos,
  .grid-herramientas {
    grid-template-columns: repeat(2, 1fr);
  }
  .ayuda-grid {
    grid-template-columns: 1fr;
  }
  .banner-recursos h1 {
    font-size: 1.8rem;
  }
  .logo-recursos {
    text-align: center;
  }
  .logo-recursos img {
    margin: auto;
    height: 75px;
  }
}
@media(max-width:768px) {
  .grid-accesos,
  .grid-herramientas {
    grid-template-columns: 1fr;
  }
  .accesos-rapidos h2,
  .herramientas h2,
  .ayuda-empresarial h2 {
    font-size: 1.6rem;
  }
  .banner-recursos {
    padding: 35px 0;
  }
}

/* =========================================
BOTONES SUBIR/INICIO
========================================= */
#btn-arriba, #btn-inicio {
  position: fixed;
  z-index: 99;
  background: var(--dorado);
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: .3s;
}
#btn-arriba {
  bottom: 30px;
  right: 30px;
}
#btn-inicio {
  bottom: 80px; /* arriba del botón subir */
  right: 30px;
}
#btn-arriba:hover, #btn-inicio:hover {
  background: var(--azul);
}






.titulo-recursos{
  background:#f8fafc;
  text-align:center;
  padding:40px 0;
}

.titulo-recursos h1{
  color:#03152f;
  margin-bottom:15px;
}


.titulo-recursos p{
  max-width:850px;
  margin:0 auto;
  color:#6b7280;
  font-size:1.15rem;
  line-height:1.8;
  font-weight:400;
}