/* Termómetro dinámico */
.thermometer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.thermometer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0099cc, #66c2ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,153,204,0.3);
    position: relative;
}

.thermometer-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thermometer-svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.thermometer-tube {
    fill: #ffffff;
    stroke: #e0e0e0;
    stroke-width: 0.5;
}

.thermometer-bulb {
    fill: #ff4444;
    stroke: #cc0000;
    stroke-width: 0.5;
}

.thermometer-mercury {
    fill: #ff4444;
}

.thermometer-scale {
    fill: none;
    stroke: #ffffff;
    stroke-width: 0.5;
}

.thermometer-display {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: bold;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.thermometer-text {
    display: flex;
    flex-direction: column;
}

.thermometer-text h1 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #333 !important;
}
