/* ===========================        
FOOTER=========================== */

.footer{
    position:relative;
    overflow:hidden;
    background:#071120;
    color:rgba(255,255,255,.75);
}

.footer-top {
    padding: 90px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about {
    max-width: 380px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 999px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links i {
    color: var(--accent);
    font-size: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--accent);
    flex-shrink: 0;
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter form {
    display: flex;
    margin-top: 20px;
}

.footer-newsletter input {
    flex: 1;
    height: 56px;
    border: none;
    outline: none;
    padding: 0 20px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.footer-newsletter button {
    width: 60px;
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    transition: all var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}


/* ===========================        
BACK TO TOP
=========================== */

.back-to-top {
    position: absolute;
    top: -28px;
    right: 60px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
}

.back-to-top:hover {
    transform: translateY(-5px);
}


/* ===========================        
WHATSAPP
=========================== */

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
}

.footer-whatsapp:hover {
    transform: translateY(-4px);
    color: #fff;
}


/* ===========================        
SHAPES
=========================== */

.footer-shape {
    position: absolute;
    pointer-events: none;
    opacity: .08;
}

.footer-shape.top {
    top: -120px;
    right: -120px;
}

.footer-shape.bottom {
    bottom: -120px;
    left: -120px;
}