/* FOOTER GENERAL */
.footer-siro {
    background: #f8fafc;
    color: #1a1a1a;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* TÍTULO */
.footer-siro h2 {
    color: #004b64;
    font-weight: 700;
}

/* SUBTÍTULO */
.footer-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-top: 10px;
}

/* LÍNEA */
.footer-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #00f5c4, #004b64);
    border: none;
    border-radius: 10px;
}

/* CTA (PROTAGONISTA) */
.btn-footer {
    display: inline-block;
    background: linear-gradient(135deg, #004b64, #00f5c4);
    color: white;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 75, 100, 0.2);
}

.btn-footer:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 75, 100, 0.3);
}

/* REDES */
.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #004b64;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00f5c4, #004b64);
    top: 100%;
    left: 0;
    transition: 0.3s;
    z-index: 0;
}

.social-btn:hover::before {
    top: 0;
}

.social-btn i {
    position: relative;
    z-index: 1;
}

.social-btn:hover {
    color: white;
    transform: translateY(-6px) scale(1.1);
}

/* COBERTURA (DISCRETA) */
.footer-info {
    font-size: 13px;
    color: #8a97a3;
}

.footer-label {
    font-weight: 600;
    color: #004b64;
}

.footer-cities {
    margin-left: 5px;
}


.footer-bottom {
  background: #004b64;
  color: white;
  letter-spacing: 0.5px;
  font-size: 14px;
}