@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700;800&display=swap");

.promo-landing {
    --promo-green: #95cc06;
    --promo-blue: #508dfb;
    --promo-dark-blue: #3d5b87;
    --promo-light: #f8f8f8;
    --promo-white: #fff;
    font-family: "Exo", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #222;
}

.promo-landing *, .promo-landing *::before, .promo-landing *::after {
    box-sizing: border-box;
}

.promo-landing a {
    text-decoration: none;
}

.promo-header {
    background: var(--promo-green);
    color: var(--promo-white);
}

.promo-header__inner {
    max-width: 1200px;
    min-height: 66px;
    margin: auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.promo-header__brand img {
    display: block;
    width: clamp(160px, 19vw, 240px);
    height: auto;
}

.promo-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 1.6vw, 24px);
}

.promo-header__nav a,
.promo-header__mobile nav a {
    color: var(--promo-white);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.promo-landing .promo-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--promo-blue);
    color: var(--promo-white);
    font-weight: 700;
    text-align: center;
}

.promo-header__mobile {
    display: none;
}

.promo-hero {
    background: #353535 url("assets/hero-fondo-desktop.webp") center / cover no-repeat;
}

.promo-hero__inner {
    position: relative;
    max-width: 1200px;
    height: clamp(390px, 41vw, 590px);
    margin: auto;
    overflow: hidden;
}

.promo-hero__text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 3%;
    width: min(45%, 500px);
    height: auto;
    transform: translateY(-50%);
}

.promo-hero__child {
    position: absolute;
    right: 1%;
    bottom: 0;
    height: 96%;
    width: auto;
    max-width: 62%;
    object-fit: contain;
    object-position: bottom right;
}

.promo-hero__button {
    display: none !important;
}

.promo-registration {
    max-width: 1200px;
    margin: auto;
    padding: 48px 24px;
}

@media (max-width: 800px) {
    .promo-header__inner {
        min-height: 56px;
        padding: 8px 16px;
    }

    .promo-header__brand img {
        width: 160px;
    }

    .promo-header__nav {
        display: none;
    }

    .promo-header__mobile {
        position: relative;
        display: block;
    }

    .promo-header__mobile summary {
        display: flex;
        width: 36px;
        height: 36px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        list-style: none;
    }

    .promo-header__mobile summary::-webkit-details-marker {
        display: none;
    }

    .promo-header__mobile summary span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--promo-white);
    }

    .promo-header__mobile nav {
        position: absolute;
        z-index: 10;
        top: 44px;
        right: -16px;
        display: grid;
        gap: 16px;
        min-width: 220px;
        padding: 20px;
        background: var(--promo-green);
        box-shadow: 0 8px 20px #0003;
    }

    .promo-hero {
        background-image: url("assets/hero-fondo-mobile.webp");
    }

    .promo-hero__inner {
        height: clamp(360px, 100vw, 520px);
    }

    .promo-hero__text {
        top: 42%;
        left: 50%;
        width: min(82%, 360px);
        transform: translate(-50%, -50%);
    }

    .promo-hero__child {
        display: none;
    }

    .promo-hero__button {
        position: absolute;
        bottom: 20px;
        left: 50%;
        display: inline-block !important;
        width: max-content;
        transform: translateX(-50%);
    }

    .promo-registration {
        padding: 32px 16px;
    }
}

.promo-registration {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
    gap: clamp(32px, 6vw, 80px);
}

.promo-registration__intro {
    padding-top: 24px;
}

.promo-registration__intro h2,
.promo-steps h2 {
    margin: 0 0 18px;
    color: var(--promo-green);
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.15;
}

.promo-registration__intro p {
    max-width: 480px;
    margin: 0 0 20px;
    line-height: 1.55;
}

.promo-registration__form {
    padding: 24px;
    border-top: 8px solid var(--promo-blue);
    border-radius: 14px;
    background: var(--promo-light);
}

.promo-registration__form h2 {
    margin: 0 0 20px;
    color: var(--promo-blue);
    font-size: 26px;
    text-align: center;
}

.promo-registration__form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.promo-registration__form label {
    display: grid;
    gap: 5px;
    color: #222;
    font-size: 13px;
}

.promo-registration__form input,
.promo-registration__form select {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid var(--promo-blue);
    border-radius: 18px;
    background: var(--promo-white);
    color: #222;
    font: inherit;
}

.promo-registration__form input:focus,
.promo-registration__form select:focus {
    outline: 2px solid var(--promo-dark-blue);
    outline-offset: 2px;
}

.promo-registration__form button {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 11px 24px;
    border: 0;
    border-radius: 9px;
    background: var(--promo-blue);
    color: var(--promo-white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.promo-registration__form [role="status"] {
    grid-column: 1 / -1;
}

.promo-steps {
    padding: 48px 24px;
    border-radius: 14px;
    background: var(--promo-light);
    text-align: center;
}

.promo-steps h2 {
    margin-bottom: 4px;
}

.promo-steps__subtitle {
    margin: 0 0 24px;
    color: var(--promo-blue);
    font-weight: 700;
}

.promo-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 950px;
    margin: auto;
}

.promo-step {
    position: relative;
    min-height: 190px;
    padding: 26px 16px 18px;
    border: 2px solid var(--promo-blue);
    border-radius: 12px;
    background: var(--promo-white);
}

.promo-step__number {
    position: absolute;
    top: 10px;
    left: 10px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--promo-blue);
    color: var(--promo-white);
    font-weight: 700;
}

.promo-step img {
    display: block;
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.promo-step p {
    max-width: 230px;
    margin: auto;
    line-height: 1.4;
}

@media (max-width: 800px) {
    .promo-registration {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .promo-registration__intro {
        padding-top: 0;
        text-align: center;
    }

    .promo-registration__form {
        padding: 20px 16px;
    }

    .promo-steps {
        padding: 36px 16px;
    }

    .promo-steps__grid {
        gap: 10px;
    }

    .promo-step {
        min-height: 170px;
        padding: 30px 7px 10px;
        font-size: 11px;
    }

    .promo-step img {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .promo-registration__form form {
        gap: 10px;
    }

    .promo-registration__form input,
    .promo-registration__form select {
        min-height: 36px;
        padding: 6px;
    }
}

.promo-prizes {
    max-width: 1200px;
    margin: auto;
    padding: 44px 24px 70px;
}

.promo-prizes__grand {
    text-align: center;
}

.promo-prizes__grand h2,
.promo-prizes__weekly-copy h2 {
    margin: 0 0 10px;
    color: var(--promo-green);
    font-size: clamp(24px, 2.7vw, 36px);
    line-height: 1.15;
}

.promo-prizes__grand p {
    margin: 0 0 24px;
    color: var(--promo-blue);
}

.promo-prizes__amounts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 850px;
    margin: auto;
}

.promo-prizes__amounts div {
    display: grid;
    gap: 3px;
    padding: 14px;
    border-radius: 12px;
    background: #f0ca30;
    color: var(--promo-dark-blue);
}

.promo-prizes__amounts span {
    font-size: 13px;
}

.promo-prizes__amounts strong {
    font-size: clamp(25px, 3vw, 40px);
}

.promo-prizes__weekly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 950px;
    margin: 72px auto 0;
}

.promo-prizes__weekly-copy p {
    margin: 0 0 20px;
    color: var(--promo-blue);
    font-size: 20px;
    font-weight: 700;
}

.promo-prizes__weekly-card {
    padding: 20px 24px;
    border-radius: 14px;
    background: var(--promo-light);
    text-align: center;
}

.promo-prizes__weekly-card h3 {
    margin: 0 0 12px;
    color: var(--promo-blue);
    font-size: 22px;
}

.promo-prizes__gift {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: auto;
}

.promo-prizes__sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--promo-blue);
    font-size: 12px;
}

.promo-prizes__sponsors img {
    width: auto;
    max-width: 90px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .promo-prizes {
        padding: 32px 16px 48px;
    }

    .promo-prizes__amounts {
        gap: 8px;
    }

    .promo-prizes__amounts div {
        padding: 10px 5px;
    }

    .promo-prizes__amounts span {
        font-size: 11px;
    }

    .promo-prizes__weekly {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 48px;
    }

    .promo-prizes__weekly-copy {
        text-align: center;
    }

    .promo-prizes__weekly-copy h2 {
        font-size: 26px;
    }

    .promo-prizes__weekly-copy p {
        font-size: 16px;
    }

    .promo-prizes__weekly-card {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding: 18px 14px;
    }

    .promo-prizes__weekly-card h3 {
        font-size: 15px;
    }

    .promo-prizes__sponsors {
        gap: 5px;
    }

    .promo-prizes__sponsors img {
        max-width: 60px;
        height: 22px;
    }
}

.promo-goal {
    padding: 44px 24px;
    border-radius: 16px;
    background: #279c08 url("assets/fondo-meta.webp") center / cover no-repeat;
    color: var(--promo-white);
    text-align: center;
}

.promo-goal__inner {
    max-width: 1100px;
    margin: auto;
}

.promo-goal h2 {
    margin: 0 0 6px;
    font-size: clamp(24px, 3vw, 38px);
}

.promo-goal__inner > p {
    margin: 0 0 24px;
}

.promo-goal__card {
    position: relative;
    min-height: 130px;
    padding: 28px 120px 28px 28px;
    border-radius: 14px;
    background: var(--promo-white);
    color: var(--promo-dark-blue);
    text-align: left;
}

.promo-goal__card p {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 700;
}

.promo-goal__bear {
    position: absolute;
    right: 30px;
    bottom: 8px;
    width: 95px;
    height: auto;
}

.promo-foundation {
    max-width: 1100px;
    margin: auto;
    padding: 58px 24px 70px;
    text-align: center;
}

.promo-foundation h2 {
    max-width: 850px;
    margin: 0 auto 38px;
    color: var(--promo-green);
    font-size: clamp(24px, 2.7vw, 36px);
}

.promo-foundation__impact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.promo-foundation__item {
    position: relative;
    padding: 46px 16px 18px;
    border: 2px solid var(--promo-blue);
    border-radius: 12px;
}

.promo-foundation__item img {
    position: absolute;
    top: -28px;
    left: 50%;
    width: 58px;
    height: 58px;
    padding: 5px;
    background: var(--promo-white);
    object-fit: contain;
    transform: translateX(-50%);
}

.promo-foundation__item h3 {
    margin: 0 0 7px;
    color: var(--promo-blue);
    font-size: 18px;
}

.promo-foundation__item p {
    margin: 0;
    line-height: 1.4;
}

.promo-foundation__logo {
    display: block;
    width: min(260px, 70%);
    height: auto;
    margin: 36px auto 18px;
}

@media (max-width: 800px) {
    .promo-goal {
        padding: 32px 16px;
        background-image: url("assets/fondo-meta-mobile.webp");
    }

    .promo-goal__card {
        min-height: 115px;
        padding: 20px 90px 20px 16px;
    }

    .promo-goal__bear {
        right: 10px;
        width: 72px;
    }

    .promo-foundation {
        padding: 52px 16px;
    }

    .promo-foundation__impact {
        gap: 10px;
    }

    .promo-foundation__item {
        padding: 38px 8px 12px;
    }

    .promo-foundation__item h3 {
        font-size: 13px;
    }

    .promo-foundation__item p {
        font-size: 11px;
    }
}

@media (max-width: 550px) {
    .promo-foundation__impact {
        grid-template-columns: 1fr 1fr;
        gap: 38px 10px;
    }

    .promo-foundation__item:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 5px);
        justify-self: center;
    }
}

.promo-stories {
    max-width: 1200px;
    margin: auto;
    padding: 50px 24px 70px;
    text-align: center;
}

.promo-stories h2 {
    margin: 0 0 24px;
    color: var(--promo-green);
    font-size: clamp(24px, 2.7vw, 36px);
}

.promo-stories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


.promo-stories__video {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
}

.promo-stories__video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.promo-stories__placeholder {
    display: grid;
    min-height: 260px;
    place-items: center;
    border-radius: 14px;
    background: #e0e0e0;
    color: var(--promo-dark-blue);
    font-weight: 700;
}

@media (max-width: 800px) {
    .promo-stories {
        padding: 40px 16px 55px;
    }

    .promo-stories__grid {
        gap: 12px;
    }

    .promo-stories__placeholder {
        min-height: 170px;
        font-size: 12px;
    }
}

@media (max-width: 550px) {
    .promo-stories__grid {
        grid-template-columns: 1fr;
    }

    .promo-stories__placeholder {
        min-height: 220px;
    }
}

.promo-faq {
    max-width: 1200px;
    margin: auto;
    padding: 48px 24px 70px;
    border-radius: 14px;
    background: var(--promo-light);
}

.promo-faq h2 {
    margin: 0 0 24px;
    color: var(--promo-green);
    font-size: clamp(24px, 2.7vw, 36px);
    text-align: center;
}

.promo-faq details {
    max-width: 900px;
    margin: 0 auto 12px;
    border-radius: 9px;
    background: var(--promo-white);
}

.promo-faq summary {
    position: relative;
    padding: 16px 48px 16px 18px;
    color: var(--promo-blue);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.promo-faq summary::-webkit-details-marker {
    display: none;
}

.promo-faq summary::after {
    position: absolute;
    right: 18px;
    content: "⌄";
    font-size: 24px;
    line-height: 16px;
}

.promo-faq details[open] summary::after {
    transform: rotate(180deg);
}

.promo-faq details p {
    margin: 0;
    padding: 0 18px 18px;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .promo-faq {
        padding: 36px 16px 50px;
    }
}

/* Tipografía Exo en títulos y controles */
.promo-landing h1,
.promo-landing h2,
.promo-landing h3,
.promo-landing button,
.promo-landing input,
.promo-landing select,
.promo-landing textarea {
    font-family: "Exo", Arial, sans-serif;
}

/* Peso de los títulos de la campaña */
.promo-landing h2,
.promo-landing h3 {
    font-weight: 800;
}


/* Barra de progreso de la meta */
.promo-goal__card {
    min-height: 240px;
    padding: 30px 50px 24px;
    overflow: hidden;
}

.promo-goal__numbers {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    color: #568bf7;
}

.promo-goal__numbers > div {
    display: flex;
    flex-direction: column;
}

.promo-goal__numbers span {
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.1;
}

.promo-goal__label-emphasis {
    font-weight: 800;
}

.promo-goal__numbers strong {
    margin-top: 4px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1;
}

.promo-goal__track {
    position: relative;
    height: 62px;
    margin-top: 10px;
    border: 4px solid #568bf7;
    border-radius: 999px;
    background: #fff;
}

.promo-goal__fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--promo-progress);
    border-radius: 999px;
    background: #568bf7;
}

.promo-goal__bear {
    position: absolute;
    z-index: 2;
    right: auto;
    bottom: -2px;
    left: clamp(0px, calc(var(--promo-progress) - 35px), calc(100% - 70px));
    width: 70px;
    height: auto;
    transition: left 300ms ease;
}

.promo-goal__percent {
    display: block;
    margin-top: 12px;
    color: #568bf7;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

@media (max-width: 800px) {
    .promo-goal__card {
        min-height: 205px;
        padding: 24px 18px 20px;
    }

    .promo-goal__numbers {
        gap: 14px;
    }

    .promo-goal__numbers > div:last-child {
        text-align: right;
    }

    .promo-goal__track {
        height: 50px;
        margin-top: 12px;
        border-width: 3px;
    }

    .promo-goal__bear {
        right: auto;
        bottom: -2px;
        left: clamp(0px, calc(var(--promo-progress) - 28px), calc(100% - 56px));
        width: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-goal__bear {
        transition: none;
    }
}


/* Footer */
.promo-footer {
    padding: 28px 24px 18px;
    background: #8fd400;
    color: var(--promo-white);
}

.promo-footer__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.promo-footer__brands p {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.2;
}

.promo-footer__main-logo {
    display: block;
    width: min(390px, 100%);
    height: auto;
    margin-bottom: 30px;
}

.promo-footer__sponsors {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-footer__sponsors img {
    width: auto;
    max-width: 110px;
    height: 36px;
    object-fit: contain;
}

.promo-footer__facebook {
    align-self: end;
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 2px;
    place-items: center;
    border-radius: 50%;
    background: var(--promo-white);
    color: #8fd400;
    text-decoration: none;
}

.promo-footer__facebook span {
    margin: 4px 0 0 2px;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.promo-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 22px 0;
    border-top: 2px solid rgba(255, 255, 255, .95);
}

.promo-footer__bottom p {
    margin: 0;
    font-size: 14px;
}

.promo-footer__bottom nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.promo-footer__bottom a {
    color: inherit;
    font-size: 14px;
    text-decoration: none;
}

.promo-footer__bottom a:hover,
.promo-footer__bottom a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .promo-footer {
        padding: 28px 18px 22px;
    }

    .promo-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .promo-footer__main-logo {
        width: min(310px, 88%);
        margin: 0 auto 26px;
    }

    .promo-footer__sponsors {
        justify-content: center;
    }

    .promo-footer__facebook {
        justify-self: center;
        margin: 0;
    }

    .promo-footer__bottom {
        grid-column: auto;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0 0;
    }

    .promo-footer__bottom nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 22px;
    }
}

@media (max-width: 480px) {
    .promo-footer__brands p {
        font-size: 16px;
    }

    .promo-footer__sponsors img {
        max-width: 92px;
        height: 30px;
    }

    .promo-footer__bottom nav {
        flex-direction: column;
    }
}
