.footer-scene {
    position: relative;
    background: #113960;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    width: 100%;
    box-sizing: border-box;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-newsletter input {
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 12px 0;
    font-size: 1rem;
    color: #ffffff;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.7);
}

.footer-newsletter button {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 10px 18px;
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-newsletter button:hover {
    background: rgba(255,255,255,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all .25s ease;
    line-height: 1.4;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-col i {
    width: 16px;
    font-size: 14px;
    opacity: 0.9;
    flex-shrink: 0;
}

.footer-up {
    text-align: center;
    margin: 30px 0 30px;
    width: 100%;
}

.footer-up a {
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.footer-up img {
    width: 38px;
    height: auto;
    transition: transform .3s ease;
    display: block;
}

.footer-up span {
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    opacity: 0.8;
}

.footer-up a:hover img {
    transform: translateY(-6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    width: 100%;
}

.footer-left,
.footer-right {
    width: 100%;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}


/*WHATSAPP*/
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:58px;
    height:58px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 25px rgba(0,0,0,.3);

    z-index:9999;

    transition:transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 12px 35px rgba(0,0,0,.35);
}


/*newslleter*/
.newsletter-feedback{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    font-size:14px;
    color:#fff;
    opacity:0;
    transform:translateY(5px);
    transition:.3s ease;
}

.newsletter-feedback.show{
    opacity:1;
    transform:translateY(0);
}

.newsletter-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:50%;
    font-size:12px;
    font-weight:bold;
}

.newsletter-feedback.success .newsletter-icon{
    background:#2fd4c7;
    color:#002c3a;
}

.newsletter-feedback.error .newsletter-icon{
    background:#ff5c5c;
    color:#fff;
}


@media (min-width: 768px) {

    .footer-inner {
        padding: 70px 30px 35px;
    }

    .footer-newsletter {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .footer-newsletter button {
        align-self: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-left {
        text-align: left;
    }

    .footer-right {
        text-align: right;
    }
}

@media (min-width: 1024px) {

    .footer-inner {
        padding: 80px 40px 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        margin-bottom: 50px;
    }

    .footer-newsletter {
        margin-bottom: 60px;
        max-width: 100%;
    }
}