/* ========== BANNER CREATIVE PARTNERSHIP ========== */
.banner-cp {
    background: #FDFF3C;
    padding: 40px 40px;
    margin: 130px 34px;
    border-radius: 40px;
}

.banner-cp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Columna izquierda - Logo outline */
.banner-cp-left {
    flex: 0 0 45%;
}

.banner-cp-logo {
    font-family: "Uncut Sans";
    font-size: 128px;
    font-weight: 400;
    line-height: 0.7;
    margin: 0;
    position: relative;
    color: transparent;
    -webkit-text-stroke: 2px #000000;
    letter-spacing: -0.05em;
    text-transform: none;
}

/* Capa de relleno encima — tapa strokes internos */
.banner-cp-logo::after {
    content: "Creative\APartnership";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #FDFF3C;
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: #FDFF3C;
    white-space: pre-line;
    pointer-events: none;
}

/* Columna derecha - Contenido */
.banner-cp-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.banner-cp-right h3 {
    font-family: "Uncut Sans";
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
    color: #000000;
}

.banner-cp-right p {
    font-family: "Uncut Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    color: #000000;
}

/* Botón */
.btn-banner-cp {
    display: inline-block;
    padding: 20px 50px;
    background: #FDFF3C;
    color: #000000;
    font-family: "Uncut Sans";
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
}

.btn-banner-cp:hover {
    background: #000000;
    color: #FDFF3C;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .banner-cp-logo {
        font-size: 90px;
    }

    .banner-cp-right h3 {
        font-size: 28px;
    }

    .banner-cp-right p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .banner-cp {
        padding: 40px 40px;
        margin: 80px 10px;
    }

    .banner-cp-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .banner-cp-left {
        flex: 1;
    }

    .banner-cp-logo {
        font-size: 70px;
        -webkit-text-stroke: 1.5px #000000;
    }

    .banner-cp-right {
        align-items: center;
    }

    .banner-cp-right h3 {
        font-size: 20px;
    }

    .banner-cp-right p {
        font-size: 16px;
    }

    .btn-banner-cp {
        padding: 18px 40px;
        font-size: 16px;
        align-self: center;
    }
}
