/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.6.1776338800
Updated: 2026-04-16 11:26:40

*/

/* ===== DICCIONARIO JURÍDICO ===== */

.sec-diccionario .et_pb_row_0{
	background: #edf6f5;
	    padding: 52px;
    border-radius: 20px;
}

.diccionario-wrapper {
  font-family: Raleway, sans-serif;
  margin-top: 30px;
}

/* Navegación alfabética */
.filtro-alfabetico-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  position: sticky;
  top: 90px;
  background: rgb(255, 255, 255);
  padding: 15px;
  z-index: 99;
  border-bottom: 1px solid rgb(238, 238, 238);
	    border-radius: 10px;
}

.filtro-alfabetico-nav a,
.filtro-alfabetico-nav .letra-vacia {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgb(229, 229, 229);
  transition: 0.3s;
}

.filtro-alfabetico-nav a {
  color: rgb(0, 112, 131);
  background-color: rgb(255, 255, 255);
}

.filtro-alfabetico-nav a:hover {
  background-color: rgb(0, 112, 131);
  border-color: rgb(0, 112, 131);
  color: rgb(255, 255, 255) !important;
}

.filtro-alfabetico-nav .letra-vacia {
  color: rgb(221, 221, 221);
  background-color: rgb(252, 252, 252);
}

/* Secciones por letra */
.seccion-letra {
  padding-top: 110px;
  margin-top: -80px;
  margin-bottom: 40px;
}

.cabecera-letra {
  font-size: 40px;
  color: rgb(51, 51, 51);
  border-bottom: 3px solid rgb(0, 112, 131);
  margin-bottom: 25px;
  font-weight: 700;
}

/* Grid de términos */
.terminos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.termino-item {
  padding: 5px 0px;
}

.termino-item h3 {
  margin: 0px;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

.termino-item h3 a {
  color: rgb(51, 51, 51);
  text-decoration: none;
  transition: color 0.2s;
}

.termino-item h3 a:hover {
  color: rgb(0, 112, 131);
}

/* Responsive */
@media (max-width: 768px) {
  .filtro-alfabetico-nav {
    top: 0px;
  }
  .terminos-grid {
    grid-template-columns: 1fr;
  }
}