﻿.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 */
}

/**********************/
/* Cintilla de Zonas */
/**********************/

.toggle-header {
    /*background-color: #007bff;*/              /* Azul Original */
    /*color: white;*/
    background-color: rgba(255, 215, 0, 0.50);              /* Dorado */
    color: black;
    /*padding: 12px;*/
    /*padding: 3px;*/
    cursor: pointer;
    border-radius: 8px;
    /*margin-top: 10px;*/
    /*margin-top: 5px;*/
    font-weight:normal;
    /*min-height: 20px;*/ /* altura mínima 50px */
    /*display: flex;*/
    align-items: center; /* centra el texto verticalmente */

    margin-top: 2px;
    padding: 1px; /* menos alto, más compacto */
    line-height: 0.1; /* reduce espacio vertical */
    font-size: 0.9rem; /* texto ligeramente más pequeño */
}

.toggle-content {
    display: none;
    /*padding: 10px 0;*/
    padding: 2px 0;
}

.toggle-icon {
    float: right;
    font-weight:bold;
}
