/* --- HEADER (Fixed) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.mobile-logo-text {
    display: none;
}

/* --- MENU OVERLAY --- */
.menu-btn {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    mix-blend-mode: difference;
    color: white;
    z-index: 1001;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-overlay.menu-open {
    opacity: 1;
    visibility: visible;
}

.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-size: 1.2rem;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.menu-link {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #888;
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    #header-container {
        width: 100%;
        max-width: 100vw;
    }

    .menu-link {
        font-size: 2.5rem;
    }

    .menu-close-btn {
        right: 20px;
        top: 20px;
    }

    /* Mobile Header Block */
    header {
        background-color: #0e0e0e;
        mix-blend-mode: normal;
        padding: 15px 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* Optional: adds a subtle separator */
    }

    .logo img {
        height: 45px !important;
        /* 50% of 90px, overrides inline style */
        width: auto;
    }

    .menu-btn svg {
        width: 30px;
        /* Smaller menu icon */
        height: 30px;
    }

    .mobile-logo-text {
        display: inline-block !important;
        margin-left: 10px;
        font-size: 1.2rem;
    }
}

/* --- FOOTER CTA STYLES --- */
.cta-section-container {
    color: #fff;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 50px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cta-image-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-hover-image {
    position: absolute;
    width: 250px;
    height: 350px;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%);
}

.cta-section-container.images-visible .cta-hover-image {
    opacity: 0.6;
    transform: scale(1);
}

.img-top-left {
    top: 10%;
    left: 10%;
}

.img-top-right {
    top: 10%;
    right: 10%;
}

.img-bottom-left {
    bottom: 10%;
    left: 10%;
}

.img-bottom-right {
    bottom: 10%;
    right: 10%;
}

.cta-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-title-line1 {
    font-size: 8vw;
}

.cta-title-line2 {
    font-size: 8vw;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.cta-arrow-icon {
    font-size: 4rem;
    margin-top: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-arrow-icon:hover {
    transform: rotate(45deg) scale(1.1);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: end;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
}

.footer-col.center {
    align-items: center;
    text-align: center;
}

.footer-col.right {
    align-items: flex-end;
    text-align: right;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #aaa;
    transform: translateX(5px);
}

.footer-col.center .footer-link {
    color: #888;
}

.footer-col.center .footer-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.social-big {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    transition: all 0.4s ease;
}

.social-big i {
    font-size: 1.5rem;
}

.social-big:hover {
    color: #e1306c;
    transform: translateX(-5px);
}

.whatsapp-link {
    color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: transform 0.3s ease;
    text-decoration: none;
    margin-top: 5px;
}

.whatsapp-link:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {

    .cta-title-line1,
    .cta-title-line2 {
        font-size: 15vw;
    }

    .cta-hover-image {
        width: 150px;
        height: 200px;
    }

    .img-top-left {
        top: 5%;
        left: 5%;
    }

    .img-top-right {
        top: 5%;
        right: 5%;
    }

    .img-bottom-left {
        bottom: 5%;
        left: 5%;
    }

    .img-bottom-right {
        bottom: 5%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .cta-hover-image {
        width: 70px;
        height: 70px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        text-align: center;
        padding-top: 30px;
    }
    .footer-col {
        align-items: center !important;
        text-align: center !important;
    }
    .footer-link:hover, .social-big:hover, .whatsapp-link:hover {
        transform: none !important;
    }
}