.fondo {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 36px);
    color: #fff;
    /* font-family: 'adobe-clean', sans-serif; */
}

.fondo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--bg-url), radial-gradient(1200px 600px at 10% 100%, rgba(255, 153, 0, 0.25) 0%, rgba(255, 153, 0, 0) 60%), linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
    background-size: cover, 100% 100%, 100% 100%;
    background-position: center, center, center;
    background-repeat: no-repeat;
    filter: saturate(1.02) contrast(1.02);
    will-change: transform;
}

.fondo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(800px 400px at 90% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
}

.welcome-hero {
    width: 100%;
    position: relative;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.decorative-image {
    position: absolute;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.welcome-inner {
    max-width: 1600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 3vw, 56px);
    position: relative;
    z-index: 2;
    min-height: calc(100vh - clamp(40px, 8vw, 72px));
    /* background-color: #fff; */
}

.campaign-wrapper {
    position: relative;
    flex: 1 1 52%;
    max-width: 1024px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    /* background-color: #a00a07; */
}

.campaign-image {
    width: 85%;
    /* width: 100%; */
    transform: translateX(45%) translateY(-5%) scale(1.08);
    transition: transform 0.3s ease;
    display: block;
    will-change: opacity, transform;
    z-index: -9;
}

/* .campaign-image:hover {
    transform: translateX(2%) translateY(-3%) scale(1.06);
} */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.paper-plane {
    right: -8%;
    bottom: -20px;
    width: clamp(120px, 18vw, 260px);
    height: auto;
    transform: translateY(-40%) scaleX(-1) rotate(0deg);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.3));
    animation: floatPlaneWelcome 8s ease-in-out infinite;
    will-change: transform;
}

.mochila {
    left: clamp(-500px, -35vw, -500px);
    bottom: clamp(-650px, -35vw, -450px);
    width: clamp(780px, 75vw, 1000px);
    /* transform: rotate(30deg); */
    z-index: 2;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
    animation: floatMochila 8s ease-in-out infinite;
    will-change: transform;
}

.cuchara {
    right: clamp(-300px, -10vw, -100px);
    top: clamp(-230px, -70vw, 100px);
    width: clamp(220px, 26vw, 460px);
    transform: rotate(5deg);
    z-index: 1;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32));
    animation: floatCuchara 8s ease-in-out infinite;
    will-change: transform;
}


@keyframes floatPlaneWelcome {

    0%,
    100% {
        transform: translateY(-40%) scaleX(-1) rotate(0deg);
    }

    50% {
        transform: translateY(calc(-40% - 25px)) scaleX(-1) rotate(2deg);
    }
}


@keyframes floatMochila {

    0%,
    100% {
        transform: translateY(-20%) rotate(30deg);
    }

    50% {
        transform: translateY(calc(-20% - 25px)) rotate(30deg);
    }
}

@keyframes floatCuchara {

    0%,
    100% {
        transform: translateY(35%) rotate(-15deg);
    }

    50% {
        transform: translateY(calc(35% - 25px)) rotate(-15deg);
    }
}

.cta-panel {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.4vw, 24px);
    align-items: flex-start;
}

/* .cta-title {
    margin: 0;
    font-size: clamp(22px, 5vw, 50px);
    line-height: 1.15;
    font-weight: 800;
    text-align: left;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
} */

.cta-title-image {
    width: clamp(340px, 42vw, 520px);
    height: auto;
    display: block;
    margin-top: 6px;
    margin-left: -12px;
    z-index: -5;
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
    width: 100%;
    max-width: 460px;
    z-index: 1;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 14px);
    width: 100%;
    background: #a20d0c;
    color: #fff;
    text-decoration: none;
    padding: clamp(12px, 2.5vw, 16px) clamp(14px, 3vw, 22px);
    min-height: clamp(50px, 7vw, 64px);
    border-radius: clamp(22px, 5vw, 50px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
    filter: brightness(1.05);
}

.cta-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.cta-button:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.cta-button:hover::after {
    transform: skewX(-20deg) translateX(220%);
}

.cta-icon {
    width: clamp(34px, 6vw, 52px);
    height: clamp(34px, 6vw, 52px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c63d0b 0%, #a00a07 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.cta-icon img {
    width: clamp(20px, 5vw, 36px);
    height: clamp(20px, 5vw, 36px);
    display: block;
}

.cta-button.cta-web {
    background: linear-gradient(135deg, #ff7a1a 0%, #a30f0e 100%);
}

.cta-button.cta-whatsapp .cta-icon {
    background: #12a54b;
}

.cta-button.cta-whatsapp {
    background: linear-gradient(135deg, #16b759 0%, #0e8a45 100%);
}

.cta-text {
    display: inline-block;
    font-size: clamp(13.5px, 2.2vw, 26px);
    line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
    .campaign-image {
        animation: none;
    }

    .paper-plane {
        animation: none;
    }

    .cta-button::after {
        transition: none;
        transform: translateX(-120%);
    }
}

/* Responsive: Tablets y pantallas medianas (1250px - 901px) */
@media (max-width: 1250px) {
    .fondo {
        padding: 15px;
        min-height: 100vh;
        overflow-y: auto;
    }

    .welcome-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        min-height: auto;
        justify-content: flex-start;
        align-items: center;
        padding: 10px 0;
    }

    .campaign-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px;
    }

    .campaign-image {
        width: 100%;
        max-width: 420px;
        height: auto;
        transform: translateX(0) translateY(0) scale(1);
        margin: 0 auto;
        display: block;
    }

    .cta-panel {
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-title-image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 10px;
    }

    .cta-list {
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 12px 18px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-icon {
        width: 42px;
        height: 42px;
    }

    .cta-icon img {
        width: 26px;
        height: 26px;
    }

    /* Decoraciones ajustadas */
    .paper-plane {
        left: 5%;
        width: 180px;
        bottom: 15px;
    }

    .mochila {
        left: -40vw;
        bottom: -35vw;
        width: 65vw;
        max-width: 750px;
    }

    .cuchara {
        right: -15vw;
        top: -22vw;
        width: 20vw;
        max-width: 320px;
    }
}

/* Responsive: Tablets pequeñas (900px - 641px) */
@media (max-width: 900px) {
    .fondo {
        padding: 16px;
        min-height: 100vh;
    }

    .welcome-inner {
        gap: 16px;
        padding: 16px 0;
    }

    .campaign-wrapper {
        max-width: 500px;
    }

    .campaign-image {
        max-width: 450px;
        width: 100%;
    }

    .cta-panel {
        max-width: 450px;
    }

    .cta-title-image {
        width: clamp(260px, 55vw, 380px);
        margin-bottom: 12px;
    }

    .cta-list {
        max-width: 400px;
        gap: 12px;
    }

    .cta-button {
        min-height: 54px;
        padding: 12px 18px;
    }

    .cta-text {
        font-size: 15px;
    }

    /* Decoraciones */
    .paper-plane {
        left: 4%;
        width: 170px;
        bottom: 8px;
    }

    .mochila {
        left: -40vw;
        bottom: -40vw;
        width: 80vw;
    }

    .cuchara {
        right: -14vw;
        top: -24vw;
        width: 24vw;
    }
}

/* Responsive: Móviles grandes (640px - 446px) */
@media (max-width: 640px) {
    .fondo {
        padding: 12px;
    }

    .welcome-inner {
        gap: 12px;
        padding: 12px 0;
    }

    .campaign-wrapper {
        max-width: 400px;
    }

    .campaign-image {
        max-width: 350px;
        width: 95%;
    }

    .cta-panel {
        max-width: 95vw;
    }

    .cta-title-image {
        width: clamp(240px, 60vw, 340px);
        margin-bottom: 10px;
    }

    .cta-list {
        max-width: 100%;
        gap: 10px;
    }

    .cta-button {
        min-height: 52px;
        padding: 12px 16px;
        border-radius: 40px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
    }

    .cta-icon img {
        width: 24px;
        height: 24px;
    }

    /* Decoraciones */
    .paper-plane {
        left: 3%;
        width: 140px;
        bottom: 5px;
    }

    .mochila {
        left: -50vw;
        bottom: -50vw;
        width: 90vw;
    }

    .cuchara {
        right: -18vw;
        top: -28vw;
        width: 26vw;
    }
}

/* Responsive: Móviles pequeños (445px y menos) */
@media (max-width: 445px) {
    .fondo {
        padding: 10px;
    }

    .welcome-inner {
        gap: 10px;
        padding: 10px 0;
    }

    .campaign-wrapper {
        max-width: 320px;
    }

    .campaign-image {
        max-width: 300px;
        width: 92%;
    }

    .cta-panel {
        max-width: 96vw;
    }

    .cta-title-image {
        width: clamp(220px, 65vw, 300px);
        margin-bottom: 8px;
    }

    .cta-list {
        gap: 10px;
    }

    .cta-button {
        min-height: 50px;
        padding: 10px 14px;
        border-radius: 35px;
    }

    .cta-text {
        font-size: 13px;
    }

    .cta-icon {
        width: 38px;
        height: 38px;
    }

    .cta-icon img {
        width: 22px;
        height: 22px;
    }

    /* Decoraciones */
    .paper-plane {
        width: 120px;
        left: 2%;
        bottom: 3px;
    }

    .mochila {
        left: -60vw;
        bottom: -60vw;
        width: 100vw;
    }

    .cuchara {
        right: -20vw;
        top: -32vw;
        width: 28vw;
    }
}

/* Ajuste fino para pantallas muy anchas */
@media (max-width: 1320px) and (min-width: 1251px) {
    .cta-list {
        max-width: 420px;
    }
}