* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.header {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  height: 190px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.links-heder {
  text-decoration: none;
}

.logo {
  width: 280px;
  height: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-item.pokedex-btn {
  border: 2px solid #f5a623;
  color: #f5a623;
}
.nav-item.pokedex-btn:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
}
.nav-item.noticias-btn {
  border: 2px solid #4a90e2;
  color: #4a90e2;
}
.nav-item.noticias-btn:hover {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.4);
}

.header-2 {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  border-bottom: 1px solid #333;
}

.header-container-2 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.logo-img-2 {
  width: 250px;
}

.nav-2 {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-item-2 {
  position: relative;
  padding: 12px 40px;
  text-decoration: none;
  color: #2c3e50;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  font-weight: bold;
}
.nav-item-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.nav-item-2.blue-2 {
  color: #4a90e2;
  border-color: #4a90e2;
}
.nav-item-2.blue-2:hover {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.4);
}
.nav-item-2.blue-2.active {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.4);
}
.nav-item-2.yellow-2 {
  color: #f5a623;
  border-color: #f5a623;
}
.nav-item-2.yellow-2:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
}
.nav-item-2.yellow-2.active {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
}

@media (max-width: 1023px) and (min-width: 481px) {
  .header {
    height: auto;
    padding: 16px 24px;
    gap: 30px;
  }
  .logo {
    width: 220px;
  }
  .header-container-2 {
    padding: 10px 20px;
  }
  .logo-img-2 {
    width: 180px;
  }
  .nav-2 {
    gap: 10px;
  }
  .nav-item-2 {
    padding: 10px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header {
    position: relative;
    height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .logo {
    width: 160px;
  }
  #menuMobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    z-index: 999;
  }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0 20px;
    width: 100%;
  }
  .mobile-menu-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 0;
    width: 80%;
    text-align: center;
    border-radius: 12px;
    transition: all 0.25s ease;
  }
  .mobile-menu-link.yellow {
    border: 2px solid #f5a623;
    color: #f5a623;
  }
  .mobile-menu-link.yellow:hover {
    background: #f5a623;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
  }
  .mobile-menu-link.blue {
    border: 2px solid #4a90e2;
    color: #4a90e2;
  }
  .mobile-menu-link.blue:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(74, 144, 226, 0.4);
  }
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
  }
  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .hamburger-btn[aria-expanded=true] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-btn[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-container-2 {
    padding: 10px 16px;
  }
  .logo-img-2 {
    width: 130px;
  }
  .nav-2 {
    gap: 8px;
  }
  .nav-item-2 {
    font-size: 12px;
    padding: 8px 16px;
  }
}
.footer-custom {
  background-color: #111;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #f5a623;
  padding-left: 5px;
}

.social-icon {
  font-size: 1.5rem;
  color: #bbb;
  transition: all 0.3s ease;
}
.social-icon:hover {
  color: #f5a623;
  transform: scale(1.2);
}

@media (max-width: 1023px) and (min-width: 480px) {
  .footer-custom {
    text-align: center;
  }
  .footer-custom .d-flex {
    justify-content: center;
  }
  .social-icon {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .footer-custom {
    text-align: center;
  }
  .footer-custom .d-flex {
    justify-content: center;
  }
  .social-icon {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .footer-custom {
    text-align: center;
    padding: 32px 16px 24px;
  }
  .footer-custom .d-flex {
    justify-content: center;
  }
  .footer-custom p {
    font-size: 14px;
  }
  .social-icon {
    font-size: 1.3rem;
  }
  .footer-link {
    font-size: 14px;
  }
}
.inicio-full {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.carosuel-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center;
}

.info-section {
  max-width: 1366px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
  background: #fff;
}

.info-titulo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2f3b46;
  margin-bottom: 20px;
}

.info-text {
  flex: 1;
}
.info-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #4f5d6b;
  margin-bottom: 14px;
}
.info-text .highlight {
  font-weight: bold;
  color: #2f3b46;
}

.info-image {
  flex: 0 0 auto;
  width: 100%;
  max-width: 450px;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  background: #e3e8ee;
}
.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-ir-pokedex {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-ir-pokedex:hover {
  background: #f5a623;
  color: #000;
  transform: translateY(-2px);
}

.featured-section {
  background: #f5f5f5;
  padding: 40px 0 20px;
}

.centradodecontenido {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured {
  margin-bottom: 160px;
}

.badge {
  background: #111;
  font-size: 22px;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  margin: 0 auto 60px auto;
}

.pokemon-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pokemon-row::-webkit-scrollbar {
  display: none;
}
.pokemon-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pokemon-row:hover .card {
  opacity: 0.15;
}
.pokemon-row:not(:hover) .card.active {
  opacity: 1;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  height: 390px;
  margin: 0 10px;
  background: #e0e0e0;
  border-radius: 16px;
  text-align: center;
  padding: 16px;
  padding-top: 50px;
  text-decoration: none;
  color: #2f3b46;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.35;
  transition: all 0.35s ease;
}
.card img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}
.card h3 {
  margin: 6px 0;
}
.card .number {
  font-size: 12px;
  opacity: 0.6;
}
.card:hover {
  background: linear-gradient(#111, #000);
  opacity: 1 !important;
  transform: scale(1.15);
  z-index: 2;
}
.card:hover img {
  transform: scale(1.1);
}
.card:hover .name {
  opacity: 1;
}
.card:hover .info {
  opacity: 1;
  bottom: -10px;
}
.card.active {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background: linear-gradient(#111, #000);
  opacity: 1;
  transform: scale(1.15);
  z-index: 2;
  scroll-snap-align: center;
}
.card.active .name,
.card.active .info {
  opacity: 1;
}
.card {
  scroll-snap-align: center;
}

.card-number {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 400;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  z-index: 1;
}

.info {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #000;
  color: #fff;
  padding: 26px 14px;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.35s ease;
}

.types {
  margin: 16px 0;
}

.type {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin: 0 4px;
  font-weight: bold;
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-ver-todos {
  display: inline-flex;
  align-items: center;
  margin-top: 50px;
  gap: 8px;
  padding: 14px 32px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-ver-todos:hover {
  background: #f5a623;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
}

.bg-rojo-heder {
  background-color: #ff5757;
}

.bg-rojo-texto {
  background: #e7c5c5;
}

.bg-rojo {
  border: 2px solid red;
  color: red;
  background-color: #fff;
}
.bg-rojo:hover {
  background: red;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.4);
}

.bg-azul-heder {
  background-color: #4a90e2;
}

.bg-azul-texto {
  background: #92c3fa;
}

.bg-azul {
  border: 2px solid #4a90e2;
  color: #4a90e2;
  background-color: #fff;
}
.bg-azul:hover {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.4);
}

.bg-amarillo-heder {
  background-color: #f5a623;
}

.bg-amarillo-texto {
  background: #fdcc7d;
}

.bg-amarillo {
  border: 2px solid #f5a623;
  color: #f5a623;
  background-color: #fff;
}
.bg-amarillo:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 166, 35, 0.4);
}

.valores {
  padding: 20px;
}

.valores-container {
  display: flex;
  max-width: 1366px;
  margin: auto;
  background: #fff;
}

.valores-img {
  flex: 2;
}
.valores-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.valores-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.valores-header {
  text-align: center;
  padding: 40px 30px;
}
.valores-header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}

.valores-texto {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.valores-texto p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.textizquierdo {
  text-align: right;
}

.btn-info {
  text-align: center;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.bicho, .type-pokedex.bicho {
  background: #a8b820;
}

.roca, .type-pokedex.roca {
  background: #b8a038;
}

.lucha, .type-pokedex.lucha {
  background: #c03028;
}

.veneno, .type-pokedex.veneno {
  background: #a040a0;
}

.planta, .type-pokedex.planta {
  background: #78c850;
}

.fuego, .type-pokedex.fuego {
  background: #f08030;
}

.agua, .type-pokedex.agua {
  background: #6890f0;
}

.volador {
  background: linear-gradient(180deg, #3dc7ef 50%, #bdb9b8 50%);
}

@media (max-width: 1023px) and (min-width: 481px) {
  .inicio-full {
    height: 50vh;
  }
  .carosuel-img {
    height: 50vh;
  }
  .info-section {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .info-titulo {
    font-size: 1.5rem;
  }
  .info-image {
    max-width: 100%;
    height: 260px;
  }
  .featured {
    margin-bottom: 80px;
  }
  .badge {
    font-size: 18px;
  }
  .card {
    width: 200px;
    height: 320px;
    opacity: 1;
  }
  .valores-container {
    flex-direction: column;
  }
  .valores-img {
    height: 220px;
    flex: none;
  }
  .valores-header h2 {
    font-size: 24px;
  }
  .textizquierdo {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .inicio-full {
    height: 40vh;
  }
  .carosuel-img {
    height: 40vh;
  }
  .info-section {
    flex-direction: column;
    padding: 20px 16px;
    gap: 20px;
    margin: 20px auto;
  }
  .info-titulo {
    font-size: 1.3rem;
  }
  .info-text p {
    font-size: 15px;
  }
  .info-image {
    max-width: 100%;
    height: 200px;
  }
  .btn-ir-pokedex {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }
  .featured-section {
    padding: 24px 0 10px;
  }
  .featured {
    margin-bottom: 40px;
  }
  .badge {
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
  }
  .pokemon-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 20px 16px 40px;
    overflow-x: auto;
  }
  .pokemon-row:hover .card {
    opacity: 1;
  }
  .pokemon-row:not(:hover) .card.active {
    opacity: 1;
  }
  .card {
    width: 240px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    padding-top: 40px;
    margin: 0;
    opacity: 1;
    transform: none !important;
  }
  .card img {
    height: 110px;
  }
  .card h3 {
    font-size: 14px;
  }
  .card .info {
    display: none;
  }
  .card.active {
    transform: none;
    background: linear-gradient(#111, #000);
    color: #fff;
  }
  .type {
    font-size: 11px;
    padding: 3px 8px;
  }
  .btn-ver-todos {
    width: 90%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .valores {
    padding: 8px 0;
  }
  .valores-container {
    flex-direction: column;
  }
  .valores-img {
    height: 200px;
    flex: none;
  }
  .valores-header {
    padding: 24px 20px;
  }
  .valores-header h2 {
    font-size: 22px;
  }
  .valores-texto {
    padding: 24px 20px;
  }
  .valores-texto p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .textizquierdo {
    text-align: left;
  }
  .btn-info {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}
.pokedex-seccion {
  padding: 40px 0 60px;
}

.pokedex-intro {
  margin-bottom: 32px;
}

.pokedex-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.pokedex-descripcion {
  font-size: 1rem;
  color: #4f5d6b;
  max-width: 600px;
}

.pokedex-generacion {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  border-left: 4px solid #f5a623;
  padding-left: 12px;
  margin: 32px 0 20px;
}

.pokedex-alert {
  border-radius: 12px;
  font-size: 0.95rem;
  margin: 24px 0 32px;
}

.pokedex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.pokedex-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pokedex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.pokedex-card img {
  display: block;
  margin: 0 auto 12px;
  max-width: 160px;
}

.pokedex-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #9a9a9a;
}

.pokedex-name {
  font-size: 20px;
  margin: 6px 0 10px;
  color: #222;
}

.types-pokedex {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.type-pokedex {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  color: #fff;
  text-transform: capitalize;
}

.pokedex-navbar {
  padding: 10px;
}
.pokedex-navbar h2 {
  font-weight: 600;
}
.pokedex-navbar .form-control {
  border-radius: 8px 0 0 8px;
}
.pokedex-navbar .btn {
  border-radius: 0 8px 8px 0;
  font-size: 18px;
}
.pokedex-navbar .btn:hover {
  transform: translateY(-2px);
}

.info-box {
  border-radius: 8px;
}

.custom-container {
  max-width: 1090px;
}

.pokedex-tabla-wrapper {
  margin-top: 48px;
}

.tabla-tipos {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.tabla-tipos th {
  background: #111;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.tabla-tipos td {
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  vertical-align: middle;
}
.tabla-tipos tr:nth-child(even) td {
  background: #f9f9f9;
}
.tabla-tipos tr:hover td {
  background: #f0f4ff;
  transition: all 0.25s ease;
}

@media (max-width: 1023px) and (min-width: 480px) {
  .pokedex-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pokedex-card img {
    max-width: 130px;
  }
  .pokedex-titulo {
    font-size: 1.5rem;
  }
  .pokedex-tabla-wrapper {
    overflow-x: auto;
  }
  .pokedex-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 15px auto;
  }
  .pokedex-card {
    padding: 14px;
  }
  .pokedex-card img {
    max-width: 110px;
  }
  .pokedex-name {
    font-size: 16px;
  }
  .pokedex-number {
    font-size: 11px;
    top: 10px;
    right: 12px;
  }
  .type-pokedex {
    font-size: 11px;
    padding: 4px 8px;
  }
  .pokedex-navbar {
    padding: 25px 15px;
  }
  .pokedex-navbar h2 {
    text-align: center;
    font-size: 20px;
  }
  .pokedex-navbar .row {
    flex-direction: column-reverse;
  }
  .pokedex-navbar form {
    justify-content: center;
  }
  .pokedex-navbar .form-control {
    font-size: 14px;
  }
  .pokedex-navbar .btn {
    padding: 6px 14px;
  }
  .info-box {
    font-size: 14px;
    text-align: center;
  }
  .small {
    text-align: center;
  }
}
.noticias {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.titulo-noticias {
  font-size: 28px;
  font-weight: 500;
  color: #8c8c8c;
  margin-bottom: 24px;
}

.grid-noticias {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card-noticias--destacada {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}
.card-noticias--destacada .imagen-noticias {
  border-radius: 0;
  margin-bottom: 0;
  height: 100%;
  object-fit: cover;
}
.card-noticias--destacada .textos-noticias {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafafa;
}
.card-noticias--destacada .titulo-card-noticias {
  font-size: 22px;
}

.card-noticias {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.35s ease;
  border-radius: 12px;
}
.card-noticias:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.textos-noticias {
  padding: 10px;
}

.imagen-noticias {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 12px;
}

.fecha-noticias {
  font-size: 14px;
  color: #ff6a00;
  margin-bottom: 4px;
}

.badge-categoria {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}

.titulo-card-noticias {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}
.titulo-card-noticias em {
  font-style: italic;
}

.descripcion-noticias {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.PreguntasFreceuntes {
  background: #f8f9fa;
}

.faq-container {
  max-width: 1100px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
}

.faq-subtitle {
  color: #6c757d;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e5e5e5;
}

.accordion-button {
  font-weight: 600;
  padding: 18px 20px;
}
.accordion-button:not(.collapsed) {
  background-color: #e9f7ef;
  color: #198754;
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
  font-size: 15px;
  color: #555;
}

@media (max-width: 1023px) and (min-width: 481px) {
  .grid-noticias {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .card-noticias--destacada {
    grid-template-columns: 1fr;
  }
  .card-noticias--destacada .imagen-noticias {
    height: 260px;
  }
  .titulo-noticias {
    font-size: 24px;
  }
  .faq-title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .noticias {
    padding: 16px;
  }
  .titulo-noticias {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .grid-noticias {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-noticias--destacada {
    grid-template-columns: 1fr;
  }
  .card-noticias--destacada .imagen-noticias {
    height: 200px;
  }
  .card-noticias--destacada .titulo-card-noticias {
    font-size: 16px;
  }
  .titulo-card-noticias {
    font-size: 16px;
  }
  .descripcion-noticias {
    font-size: 14px;
  }
  .PreguntasFreceuntes {
    padding: 24px 0;
  }
  .faq-title {
    font-size: 22px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
  .accordion-button {
    font-size: 14px;
    padding: 14px 16px;
  }
  .accordion-body {
    font-size: 14px;
    padding: 14px 16px;
  }
}

/*# sourceMappingURL=style.css.map */
