.all-cont {
    font-family: sans-serif;
    margin: 0px !important; 
    list-style: none;
    color: #073c5f;
}

.all-cont h2{
	margin: 0;
}

.all-cont li {
    margin-left: 15px;
}

.main-container{ 
	margin: auto 0; 
	width: 100%; 
}


.all-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
 align-items: center;
  margin: 10px auto;
  width: 100%;
}

.all-cont > .block:first-child {
    width: 60%;
}

.all-cont .block {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 75%;       
    align-items: stretch; 
}

.box {
    flex: 1;        
    height: auto;
}

.division {
    border: 1px solid #fe9e19;
    border-radius: 15px;
    height: 100%;       
}

.division h2 {
    text-align: center;
    background-color: #fe9e19;
    color: #FFF;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 8px;
}

/* textos */
.all-cont p, .cont{
    display: flex;
    flex-direction: column;
    /*gap: 1px; */
    font-size: 20px;
}

.cont a{
	margin-bottom: 10px!important;
}

.all-cont li {
    margin-bottom: 10px;
}

.cont {
    padding: 25px;
}

.cont li:hover, .cont a:hover, .title-coord:hover, .title-coords:hover {
	background-color: #FEEDD3;
	color: #FF9E1A !important;
}

/*telefono*/

@media (max-width: 768px) {
    .all-cont {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 10px;
    }
    
    .all-cont .block {
        width: 100% !important;
        flex-direction: column !important;
        gap: 16px;
    }

    .all-cont .box {
        width: 100% !important;
    }
    
    .all-cont p, .cont{
    	font-size: 16px;
		}

    .division {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        background-color: #ffffff;
    }

    .division.is-open {
        border-color: #fe9e19;
        box-shadow: 0 6px 12px rgba(254, 158, 25, 0.15);
    }

    .division h2 {
        cursor: pointer;
        position: relative;
        padding: 16px 50px 16px 20px; /* Ajustamos padding por el nuevo tamaño de letra */
        user-select: none;
        font-size: 1.4rem !important; 
        font-weight: 700;             /* Un poco más de grosor para que resalte */
        line-height: 1.2;             /* Evita que se encimen las letras si el título es largo */
        border-radius: 0px;
    }

    .division h2::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.6rem;            
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .division.is-open h2::after {
        transform: translateY(-50%) rotate(45deg);
    }

    .division .cont {
        display: flex !important;
        max-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        transform: translateY(-8px);
        transition: max-height 0.35s ease-in-out, opacity 0.3s ease, transform 0.3s ease, padding 0.35s ease;
        overflow-y: hidden; 
    }

    .division.is-open .cont {
        max-height: 280px; 
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch; 
        opacity: 1;
        transform: translateY(0);
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        background-color: #fafafa;
        border-top: 1px solid #f0f0f0;
    }

    .division .cont::-webkit-scrollbar {
        width: 5px;
    }
    .division .cont::-webkit-scrollbar-thumb {
        background: #fe9e19;
        border-radius: 10px;
    }
    .division .cont::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
}