@charset "utf-8";
/* CSS Document */

/* ==========================================================================
   MÓDULO: DIAGRAMAS FLORALES Y BOTÁNICOS
   ========================================================================== */

.diagrama-botanico {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #ebe9d5;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    max-width: 1000px;
    margin: 25px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 0px 0px rgba(0,0,0,0.04);
}

.canvas-svg {
    flex: 1;
    min-width: 290px;
    max-width: 480px;
}

.leyenda-diagrama {
    flex: 1.2;
    min-width: 280px;
    padding-left: 35px;
}

.leyenda-diagrama h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2b5b3a;
    text-transform: uppercase;
    font-size: 11pt;
    letter-spacing: 0.8px;
}

.leyenda-diagrama ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leyenda-diagrama li {
    margin-bottom: 14px;
    font-size: 11pt;
    display: flex;
    align-items: flex-start;
}

/* El punto de color de la leyenda */
.dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.15);
}

.texto-info {
    color: #334155;
    line-height: 1.5;
}

/* Símbolos botánicos */
.simbolo-sexo {
    font-size: 14pt;
    font-weight: bold;
    display: inline-block;
    margin: 0 3px;
    vertical-align: -1px;
}

/* Paleta de colores estandarizada para botánica */
.color-involucro { background: #f4f9f4; border: 1.5px dashed #81c784; }
.color-glandula  { background: #cddc39; border-color: #afb42b; border-radius: 50%; }
.color-androceo  { background: #ffeb3b; border-color: #fbc02d; border-radius: 50%; color: #b28900; }
.color-gineceo   { background: #4caf50; border-color: #2e7d32; color: #2e7d32; }
/* Sombra para los elementos de los diagramas florales */
.sombra-svg {
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.1));
}
/* Ajuste responsivo para móviles */
@media (max-width: 640px) {
    .leyenda-diagrama {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
}