/* ==========================================================================
   Gateway / Split Screen Styles
   ========================================================================== */
.gateway-body {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070a;
}
.gateway-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.gateway-brand {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}
.gateway-brand h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.gateway-brand .brand-sub {
    font-size: 0.55em;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}
.gateway-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}
.gateway-split {
    display: flex;
    width: 100%;
    height: 100%;
}
.gateway-card {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}
.corporate-card {
    background: url('assets/img/hero.jpg') center/cover;
}
.personal-card {
    background: url('assets/img/topo.jpg') center/cover;
}
.gateway-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 10, 0.85);
    transition: background 0.4s ease;
}
.gateway-card:hover .card-overlay {
    background: rgba(5, 7, 10, 0.5);
}
.gateway-card:hover {
    flex: 1.3;
}
.card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    transition: transform 0.4s ease;
}
.gateway-card:hover .card-content {
    transform: scale(1.05);
}
.card-content ion-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}
.card-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.card-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.btn-gateway {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.gateway-card:hover .btn-gateway {
    background: var(--primary-orange);
    color: #fff;
}
@media (max-width: 768px) {
    .gateway-body {
        height: 100dvh;
        overflow: hidden;
        background-color: #05070a;
    }
    .gateway-container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .gateway-brand {
        position: relative;
        padding: 1.2rem 1rem;
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #05070a;
        flex-shrink: 0;
        transform: none;
        left: auto;
    }
    .gateway-brand h1 {
        font-size: 1.8rem;
        margin: 0;
        max-width: 100%;
    }
    .gateway-brand .brand-sub {
        font-size: 0.4em;
        text-align: left;
    }
    .gateway-split {
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }
    .gateway-card {
        flex: 1;
        min-height: 0;
    }
    .gateway-card:hover {
        flex: 1;
    }
    .card-content {
        padding: 1rem 0.5rem;
    }
    .card-content ion-icon {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    .card-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    .btn-gateway {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

