.hero-tic{
    background-image: url("../assets/nodoTic.jpeg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
    overflow: hidden;
}
.hero-content-tic{
    position: relative;
    z-index: 1;
    color: rgb(23, 219, 33);
    font-size: x-large;
}
/* Contenedor general */
.about-nodo .container {
    width: 90%;  /* Ocupar el 90% del ancho total */
    margin: 0 auto; /* Centrar la sección */
    display: flex;
    justify-content: space-between;
    gap: 5%;
    padding: 40px 0;
}

/* Información del nodo (45% del ancho) */
.info {
    width: 45%;
}

.info h2 {
    color: green;
    margin-bottom: 5%;
    font-size: 2rem;
}

.info h3{
    color: green;
    font-size: 1.8rem;
    margin-top: 2%;
}

.info p {
    margin-bottom: 5%;
}

/* Lista de programas */
.program-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.program-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

/* Último elemento sin borde */
.program-list li:last-child {
    border-bottom: none;
}

/* Icono */
.icon {
    color: #008000;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Enlaces */
.program-link {
    color: #008000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.program-link:hover {
    color: #004d00;
    text-decoration: underline;
}


.info-maps{
    justify-items: flex-start;
    margin-left: 5%;
    margin-bottom: 5%;
}

/* Ubicación con Google Maps (45% del ancho) */
.location {
    width: 45%;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    height: 60vh;
}

/* Estilo del mapa */
.map-container {
    width: 100%;
    height: 70%;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}