﻿.toggle-arrow {
    text-align: center;
}

/* Descripción */
.toggle-section-descripcion {
    /*text-align: center;*/
    text-align: justify;
    margin: 2rem 0;
}

button#toggleBtnDescripcion {
    background-color: transparent;
    border: none;
    color: #2c8bf0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block; /* permite centrarlo con text-align */
}

button#toggleBtnDescripcion:hover {
    color: #fbb03b;
}

.collapsible-descripcion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.collapsible-descripcion.open {
    max-height: 500px; /* ajusta según tu contenido */
}

/* Mapa */
.toggle-section {
    text-align: justify;
    margin: 2rem 0;
}

button#toggleBtn {
    background-color: transparent;
    border: none;
    color: #2c8bf0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

button#toggleBtn:hover {
    color: #fbb03b;
}

.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.collapsible.open {
    max-height: 500px; /* ajusta según tu contenido */
}
