div.empresas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

h2.titulo {
    text-align: center;
    color: #c49200;
    margin-bottom: 50px;
    text-shadow: 0 0 12px rgba(196, 146, 0, 0.25);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card2 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(196, 146, 0, 0.25);
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card2:hover {
    transform: translateY(-8px);
    border-color: #c49200;
    box-shadow: 0 0 35px rgba(196, 146, 0, 0.25);
}

.card2 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.4s ease, transform 0.4s ease;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card2:hover img {
    filter: brightness(1.05);
    transform: scale(1.05);
}

.card-content {
    padding: 25px 22px 30px;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    color: #c49200;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-content p {
    line-height: 1.6;
    color: #444;
    white-space: pre-line;
    margin-bottom: 10px;
}

.card-content a {
    display: inline-block;
    margin-top: 10px;
    color: #c49200;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #d6a300;
    text-decoration: underline;
}

.btn {
    text-transform: uppercase;
    width: auto;
    background: #c49200;
    min-width: 170px;
    padding: 18px 40px;
    height: auto;
    border: none;
    color: #fff;
}

@media screen and (max-width: 448px) {
    .oculta{
        display: none;
    }
}

@media (max-width: 768px) {
    .card2 img {
        height: 200px;
    }
}