.lista-simbol {
  list-style: none;
  padding-left: 0;
}

.lista-simbol li {
  position: relative;
  padding-left: 30px; 
  margin-bottom: 10px;
}

.lista-simbol li::before {
  content: "\f058"; 
  font-family: "Font Awesome 6 Free"; 
  font-weight: 400; 
  color: #28a745;
  font-size: 1.2rem;
   position: absolute;
  left: 0;
  top: 2px; 
}



/* Estilos base de la lista */
.lista-simbols2 {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-simbols2 li {
  position: relative;
  padding-left: 32px; 
  margin-bottom: 12px;
  /**line-height: 1.5;**/
}


.lista-simbols2 li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 400; 
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  text-align: center;
  vertical-align: middle; /* Alineaci贸n vertical */
  line-height: 1; /* Importante para iconos */  
}


.lista-simbols2.check li::before { 
  content: "\f058"; 
  color: #28a745; 
}

.lista-simbols2.xmark li::before { 
  content: "\f057"; 
  color: #dc3545; 
  font: var(--fa-font-solid);
  font-size: 1.1rem;
}

.lista-simbols2.info li::before { 
  content: "\f05a"; 
  color: #0d6efd; 
  font: var(--fa-font-solid);
  font-size: 1.1rem;
}


.lista-simbols2.warning li::before { 
  content: "\f06a"; 
  color: #fd7e14; 
   font: var(--fa-font-solid);
   font-size: 1.1rem;
}

.lista-simbols2.question li::before { 
  content: "\f059"; 
  color: #6f42c1; 
   font: var(--fa-font-solid);
   font-size: 1.1rem;
}



.lista-simbols2.paper li::before { 
  content: "\f1ea"; 
  color: #0066ff; 
   font: var(--fa-font-solid);
   font-size: 1.1rem;
}

/* Estilos base de la lista */
.lista-simbols3 {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-simbols3 li {
  position: relative;
  padding-left: 32px; 
  margin-bottom: 12px;
}

/* Pseudo-elemento base para todos los íconos */
.lista-simbols3 li::before {
  font-family: "Font Awesome 6 Brands"; /* 👈 Clave para redes sociales */
  font-weight: 400; 
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  text-align: center;
  line-height: 1;
}

/* 🔵 Twitter / X */
.lista-simbols3 li.twitter::before { 
  content: "\e61b"; /* o "\f099" para el pájaro clásico */
  color: #000000; 
}

/* 🔵 Facebook */
.lista-simbols3 li.facebook::before { 
  content: "\f09a"; 
  color: #1877F2; 
}

/* 🟣 Instagram */
.lista-simbols3 li.instagram::before { 
  content: "\f16d"; 
  color: #E4405F; 
}

/* 🔴 YouTube */
.lista-simbols3 li.youtube::before { 
  content: "\f167"; 
  color: #FF0000; 
}

/* 🌐 Sitio Web */
.lista-simbols3 li.web::before { 
  content: "\f0ac"; 
  color: #0d6efd; 
  font-family: "Font Awesome 6 Free"; /* 👈 Los iconos genéricos sí usan "Free" */
  font-weight: 900; /* Necesario para iconos solid de FA Free */
}


/** Css Articulos SEDES **/


        .sede-principal-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
        }

        .sede-header {
            margin-bottom: 30px;
        }
		
		.sede-header .label {
			background-color: transparent !important;
		}

        .sede-header .label {
            color: #4CAF50;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .sede-header h1 {
            color: #1565C0;
            font-size: 42px;
            margin: 0 0 15px 0;
            font-weight: 700;
        }

        .sede-header p {
            color: #666;
            font-size: 16px;
            margin: 0;
            max-width: 600px;
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .info-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
        }

        .info-card .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .info-card.blue .icon {
            background: #E3F2FD;
            color: #1565C0;
        }

        .info-card.green .icon {
            background: #E8F5E9;
            color: #2E7D32;
        }

        .info-card.purple .icon {
            background: #F3E5F5;
            color: #7B1FA2;
        }

        .info-card h3 {
            font-size: 14px;
            color: #333;
            margin: 0 0 12px 0;
            font-weight: 700;
            text-transform: uppercase;
        }

        .info-card p, .info-card div {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .info-card .highlight {
            background: #E8F5E9;
            padding: 10px;
            border-radius: 6px;
            margin-top: 10px;
            text-align: center;
            font-weight: 600;
            color: #2E7D32;
        }

        .btn-google-maps {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 8px 16px;
            background: #E8F5E9;
            color: #2E7D32;
            text-decoration: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-google-maps:hover {
            background: #C8E6C9;
        }

        .btn-email {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 8px 20px;
            background: #E3F2FD;
            color: #1565C0;
            text-decoration: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #BBDEFB;
        }

        .map-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: center;
        }

        .map-info h2 {
            color: #1565C0;
            font-size: 24px;
            margin: 0 0 15px 0;
        }

        .map-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .map-container {
            background: #f5f5f5;
            border-radius: 8px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            color: #999;
        }

        .services-section {
            margin-bottom: 40px;
        }

        .section-title {
            text-align: center;
            color: #1565C0;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #4CAF50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 15px;
        }

        .service-item {
            background: white;
            border: 2px solid #E3F2FD;
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-item:hover {
            border-color: #1565C0;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(21, 101, 192, 0.15);
        }

        .service-item i, .service-item em {
            font-size: 32px;
            color: #1565C0;
            margin-bottom: 10px;
            display: block;
        }
        

        .service-item span {
            font-size: 12px;
            color: #333;
            font-weight: 600;
            line-height: 1.4;
            display: block;
        }
        
        .service-item a {
            text-decoration: none;
        }
        
  
        .dependencies-section {
            background: #FAFAFA;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .dependencies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .dependency-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .dependency-card .dep-icon {
            width: 45px;
            height: 45px;
            background: #E8F5E9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2E7D32;
            font-size: 20px;
            flex-shrink: 0;
        }

        .dependency-card .dep-content h4 {
            margin: 0 0 8px 0;
            color: #333;
            font-size: 14px;
        }

        .dependency-card .dep-content .contact-info {
            font-size: 12px;
            color: #666;
            line-height: 1.8;
        }

        .dependency-card .dep-content a {
            color: #1565C0;
            text-decoration: none;
        }

        .footer-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            min-width: 200px;
            justify-content: center;
        }

        .action-btn.pqrsdf {
            background: #E3F2FD;
            color: #1565C0;
            border: 2px solid #BBDEFB;
        }

        .action-btn.tramites {
            background: #E8F5E9;
            color: #2E7D32;
            border: 2px solid #C8E6C9;
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .note {
            text-align: left;
            font-size: 12px;
            color: #999;
            margin-top: 20px;
            padding: 10px;
			padding-lef: 1.5rem;
			padding-top: 10px;
			padding-bottom: 10px;
			padding-right: 10px;
            background: #F5F5F5;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .sede-header h1 {
                font-size: 32px;
            }
            
            .info-cards-grid {
                grid-template-columns: 1fr;
            }
            
            .map-section {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dependencies-grid {
                grid-template-columns: 1fr;
            }
        }
    

/**CSS Articulos Customized**/

	/** Css global mis articulos **/    

    .articles-sarare {
      font-size: 1rem; /**!important; **/
      font-family: Segoe UI Regular;
      color: #4d4d4d;
	}
    
 div.cck_contents.cck_content div.cck_desc .articles-sarare{
      font-size: 1rem; /**!important; **/
      font-family: Segoe UI Regular;
      color: #4d4d4d;
	}
	
/*** CSS Personalización del Formulario de Contacto ***/	

div.seb_css3{
    display: flex;
    flex-direction: column;
}
div.vertical div.cck_forms {
    float: none;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

div.cck_forms.cck_site div.cck_form input, div.cck_forms.cck_site div.cck_form textarea, div.cck_forms.cck_site div.cck_form select, div.cck_forms.cck_site div.cck_form option, div.cck_forms.cck_site div.cck_form span, div.cck_forms.cck_site div.cck_form a.cck_preview, div.cck_forms.cck_site div.cck_form span.cck_preview, div.cck_forms.cck_site div.cck_desc, div.cck_forms.cck_site div.cck_value.cck_value_wysiwyg_editor p, div.cck_forms.cck_site div.cck_value {
    line-height: 1.2em;
    width: 100%;
}

/* Corregir solapamiento en formulario SEBLOD vertical */
div.vertical div.cck_forms {
    float: none !important;
    padding-bottom: 5px !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
    margin-bottom: 5px !important;
}

div.vertical div.cck_forms .cck_label {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 5px !important;
}

div.vertical div.cck_forms .cck_form {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

div.vertical div.cck_forms input[type="text"],
div.vertical div.cck_forms input[type="email"],
div.vertical div.cck_forms input[type="tel"],
div.vertical div.cck_forms select,
div.vertical div.cck_forms textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}


/* Aumentar altura de los inputs */
div.cck_form input[type="text"],
div.cck_form input[type="email"],
div.cck_form input[type="tel"],
div.cck_form input[type="url"],
div.cck_form input[type="password"],
div.cck_form select,
div.cck_form textarea {
    height: auto !important;
    min-height: 40px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

/* Específico para selects */
div.cck_form select {
    height: 40px !important;
}

/* Específico para textareas */
div.cck_form textarea {
    min-height: 120px !important;
    padding: 12px !important;
}

/* Ajustar el contenedor del input */
div.cck_form {
    margin-bottom: 15px;
}