﻿text.highcharts-credits {
    visibility: collapse;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #7dccd0;
    }

.section-description {
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.logos-section {
    background: url('../images/media/fondo-cafe-1.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 40px 0;
    overflow: hidden;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.logo-card {
    background: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 auto;
}

    .logo-card:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .logo-card img {
        max-width: 80px;
        max-height: 80px;
        object-fit: contain;
        display: block;
    }

.chart-section {
    padding: 40px 0;
}

.chart-card {
    background: #ffffff;
    padding: 20px;
}

@media (max-width: 767px) {
    .logos-container {
        gap: 20px;
    }
}
