/* Enhanced About Section Styles - ACTUALIZADO con badges negros */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    transform: translate(100px, -200px);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 1;
}

.company-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.company-card {
    background-color: #ffffff;
    border-radius: 16px;
    height: 100%;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000000;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 1.2rem;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.company-card:hover .logo-container {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.company-logo {
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
}

.company-card h3 {
    margin-bottom: 1.2rem;
    color: #333333;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.company-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #D4AF37;
}

.company-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    height: 125px;
    overflow: hidden;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.visit-site {
    color: #000000;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.visit-site i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.company-card:hover .visit-site {
    color: #D4AF37;
}

.company-card:hover .visit-site i {
    transform: translateX(5px);
}