.contact-hero {
    position: relative;
    height: 35vh;
    background: url('../img/fondos/fine4.png') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.contact-box {
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-link {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #f0a500;
    border-bottom: 1px solid #f0a500;
}

.btn-outline-success {
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-success:hover {
    background-color: #25D366;
    color: white;
}

#map {
    border-radius: 12px;
}