@import "https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap";:root{--color-teal:#2a94a7;--color-orange:red;--color-teal-dark:#007681;--color-teal-light:#20a2a5;--color-orange-light:#f37d69;--color-orange-dark:#d4432a;--color-red:#e5314c;--color-yellow:#f6c140;--color-white:#fff;--color-offwhite:#fdfbf7;--color-text:#2d3748;--color-text-muted:#718096;--color-border:#e2e8f0;--font-primary:"Outfit", sans-serif;--font-secondary:"Inter", sans-serif;--shadow-sm:0 1px 2px 0 #0000000d;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;--radius-md:12px;--radius-lg:20px;--radius-full:9999px}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-secondary);background-color:var(--color-offwhite);color:var(--color-text);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:var(--color-white);min-height:100vh;box-shadow:inset 0 -20px 20px -20px #0000000d}h1,h2,h3,h4,h5,h6{font-family:var(--font-primary);font-weight:700}.app-container{background-color:var(--color-white);max-width:480px;min-height:100vh;box-shadow:var(--shadow-lg);flex-direction:column;margin:0 auto;display:flex;position:relative;overflow-x:hidden}.page-content{z-index:2;flex-direction:column;flex:1;padding:4px 11px;display:flex;position:relative}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}.animate-float{animation:3s ease-in-out infinite float}@keyframes pulse-soft{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}.animate-pulse-soft{animation:2s cubic-bezier(.4,0,.6,1) infinite pulse-soft}.error-message-container{background-color:var(--color-offwhite);z-index:10;flex:1;justify-content:center;align-items:center;padding:24px;display:flex}.error-message-card{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);text-align:center;border-bottom:6px solid var(--color-red);background:#fff;width:100%;max-width:360px;padding:48px 32px;animation:.5s ease-out forwards fadeIn}.error-message-icon{margin-bottom:24px;font-size:48px;display:block}.error-message-card p{color:var(--color-text);font-family:var(--font-primary);text-transform:uppercase;font-size:1.5rem;font-weight:700;line-height:1.2}.a-logo{justify-content:center;align-items:center;width:100%;max-width:240px;display:flex}.a-logo__image{width:50%;height:auto;display:block}.o-header{text-align:center;justify-content:center;align-items:center;width:100%;padding:12px 32px;display:flex;position:relative}.o-header__brand{z-index:5;justify-content:center;width:100%;animation:.8s ease-out fadeInDown;display:flex;position:relative}.o-header__logo{filter:drop-shadow(0 2px 4px #0000000d);max-width:240px}.o-header__watercolor-left{opacity:.6;z-index:1;pointer-events:none;width:200px;animation:6s ease-in-out infinite floatTeal;position:absolute;top:-30px;left:-50px}.o-header__watercolor-left img{filter:blur(1px);width:100%;height:auto}.o-header__watercolor-right{opacity:.6;z-index:1;pointer-events:none;width:220px;animation:7s ease-in-out infinite floatOrange;position:absolute;top:-20px;right:-60px}.o-header__watercolor-right img{filter:blur(1px);width:100%;height:auto}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}@keyframes floatTeal{0%,to{transform:translate(0)rotate(0)}50%{transform:translate(10px,10px)rotate(2deg)}}@keyframes floatOrange{0%,to{transform:translate(0)rotate(0)}50%{transform:translate(-10px,15px)rotate(-2deg)}}@media (width<=400px){.o-header__watercolor-left{width:160px}.o-header__watercolor-right{width:180px}.o-header__logo{max-width:200px}}.a-title{font-family:var(--font-primary);color:var(--color-teal-dark);margin-bottom:1rem;font-size:2.25rem;font-weight:800}.a-input{border-radius:var(--radius-md);border:2px solid var(--color-border);width:100%;font-family:var(--font-secondary);background-color:#f9fafb;outline:none;padding:24px 16px 8px;font-size:1rem;transition:border-color .2s}.a-input:focus{border-color:var(--color-teal)}.a-input:hover:not(:focus){border-color:#d1d5db}.a-input--error{border-color:var(--color-red)!important}.m-form-field{flex-direction:column;width:100%;margin-bottom:1rem;display:flex;position:relative}.m-form-field__label-top{font-family:var(--font-primary);color:var(--color-teal-dark);letter-spacing:.5px;align-items:center;margin-bottom:8px;font-size:.9rem;font-weight:800;display:flex}.m-form-field__label-top:before{content:"";border-bottom:2px dashed var(--color-teal-dark);width:40px;height:2px;margin-right:8px;display:inline-block}.m-form-field__label-top:after{content:"";border-bottom:2px dashed var(--color-teal-dark);flex:1;height:2px;margin-left:8px}.m-form-field__input-wrapper{border:2px dashed var(--color-teal-dark);background:#fdfdfd;border-radius:20px;align-items:center;width:100%;height:60px;padding:0 16px;transition:all .3s;display:flex}.m-form-field__input-wrapper:focus-within{border-color:var(--color-red);box-shadow:0 4px 12px #e5314c1a}.m-form-field__input-wrapper.is-error{border-color:var(--color-red)}.m-form-field__icon{color:var(--color-teal);flex-shrink:0;margin-right:12px}.m-form-field .a-input{height:100%;color:var(--color-text);background:0 0;border:none;width:100%;padding:0;font-size:1.1rem}.m-form-field .a-input:focus{box-shadow:none;outline:none}.m-form-field .a-input::placeholder{color:#a0aec0;font-weight:500}.m-form-field__error{color:var(--color-red);margin-top:4px;padding-left:16px;font-size:.8rem;font-weight:600}.a-button{border-radius:var(--radius-full);width:100%;font-family:var(--font-primary);color:var(--color-white);border:none;padding:16px 24px;font-size:1.125rem;font-weight:700;transition:all .3s;transform:translateY(0)}.a-button--active{background:linear-gradient(to right, var(--color-orange), var(--color-red));box-shadow:var(--shadow-md);cursor:pointer}.a-button--active:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}.a-button--active:active{transform:translateY(0)}.a-button--disabled{cursor:not-allowed;opacity:.7;background-color:#d1d5db}.o-registration-form{width:100%}.o-registration-form__actions{width:100%;margin-top:2rem}.a-button--registration{background:var(--color-orange);color:#fff;cursor:pointer;border:none;border-radius:40px;justify-content:center;align-items:center;gap:12px;width:100%;height:65px;font-size:1.4rem;font-weight:800;transition:all .3s;display:flex;box-shadow:0 8px 20px #e5314c66}.a-button--registration:active{transform:scale(.98);box-shadow:0 4px 10px #e5314c4d}.a-button__icon-right{background:#fff3;border-radius:50%;padding:4px}.o-registration-form__terms{text-align:center;color:var(--color-teal-dark);margin-top:1.5rem;font-size:.9rem;font-weight:600;line-height:1.4}.o-registration-form__terms-link{color:var(--color-teal-dark);cursor:pointer;text-decoration:underline}.m-modal-overlay{z-index:1000;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background-color:#000000bf;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.m-modal-container{text-align:center;border:2px solid var(--primary-color,#e4002b);background:#fff;border-radius:20px;width:90%;max-width:400px;padding:2rem;box-shadow:0 10px 25px #0003}.m-modal-title{color:var(--primary-color,#e4002b);margin-bottom:1rem;font-size:1.5rem;font-weight:800}.m-modal-message{color:#333;margin-bottom:2rem;font-size:1.1rem;line-height:1.5}.m-modal-button{background:var(--primary-color,#e4002b);color:#fff;cursor:pointer;border:none;border-radius:50px;width:100%;padding:.8rem 2rem;font-weight:700;transition:transform .2s}.m-modal-button:active{transform:scale(.95)}@keyframes fade-in{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.animate-fade-in{animation:.3s ease-out forwards fade-in}.a-fixed-icon{z-index:2;filter:drop-shadow(0 4px 8px #00000026);position:absolute}.p-registro{flex-direction:column;align-items:center;width:100%;padding:0;display:flex;position:relative;overflow:hidden}.p-registro__background{z-index:0;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}.p-registro__splash-top{opacity:.8;filter:hue-rotate(10deg);width:250px;position:absolute;top:-50px;left:-50px}.p-registro__splash-bottom{opacity:.8;width:250px;position:absolute;bottom:-50px;right:-50px;transform:rotate(180deg)}.p-registro__content{z-index:1;flex-direction:column;align-items:center;width:100%;max-width:340px;margin-top:1rem;padding:0 20px;display:flex;position:relative}.p-registro__pv-badge{border:1px solid var(--color-teal);color:var(--color-teal-dark);background:#0478731a;border-radius:50px;align-items:center;gap:8px;margin-bottom:1.5rem;padding:8px 16px;font-size:.9rem;font-weight:700;display:flex;box-shadow:0 4px 12px #0000000d}.p-registro__pv-name{color:var(--color-red);text-transform:uppercase}.p-registro__header{text-align:center;width:100%;margin-bottom:2rem}.p-registro__title-container{margin-bottom:1rem;padding:15px 40px;display:inline-block;position:relative}.p-registro__title{font-family:var(--font-primary);color:var(--color-teal-dark);margin:0;font-size:2.2rem;font-weight:800;line-height:1.1}.p-registro__subtitle{color:var(--color-teal-dark);margin-top:1rem;font-size:1.1rem;font-weight:600;line-height:1.4}.p-registro__subtitle-highlight{color:var(--color-red)}.p-registro__terms{text-align:center;color:var(--color-teal-dark);margin-top:0;font-size:.8rem;font-weight:500}.p-registro__data-policy{color:var(--color-teal-dark);text-align:center;margin-top:1.5rem;margin-bottom:1rem;padding:0 10px;font-size:.8rem;font-weight:500}.p-registro__data-policy a{color:var(--color-red);font-weight:700;text-decoration:underline}.m-scratch-container{aspect-ratio:1;border-radius:var(--radius-lg);width:100%;max-width:320px;box-shadow:var(--shadow-md);background-color:var(--color-offwhite);border:4px dashed var(--color-teal-light);margin:0 auto;position:relative;overflow:hidden}.m-scratch-canvas{z-index:10;cursor:pointer;width:100%;height:100%;position:absolute;top:0;left:0}.m-reward-display{text-align:center;z-index:5;flex-direction:column;justify-content:center;align-items:center;width:100%;height:100%;padding:16px;transition:filter .3s;display:flex;position:absolute;top:0;left:0}.m-reward-display--blurred{filter:blur(8px)}.m-reward-display__image{object-fit:contain;border-radius:8px;max-width:80%;max-height:80%}.m-reward-display__title{color:var(--color-orange);margin-bottom:8px;font-size:1.5rem}.m-reward-display__description{color:var(--color-text);font-size:1rem}.m-reward-display__loader{border:4px solid #ffffff4d;border-top:4px solid var(--color-orange);border-radius:50%;width:40px;height:40px;margin-bottom:16px;animation:1s linear infinite spin}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.animate-pulse{animation:1.5s infinite pulse}@keyframes pulse{0%{opacity:1}50%{opacity:.5}to{opacity:1}}.p-home{flex-direction:column;align-items:center;gap:0;width:100%;display:flex}.p-home__header{text-align:center;margin-bottom:1rem}.p-home__promo{flex-direction:column;align-items:center;margin-bottom:.5rem;font-family:Fredoka One,Arial Rounded MT Bold,Arial Black,sans-serif;line-height:1.1;display:flex;position:relative;transform:rotate(-3deg)}.p-home__deco-left-1,.p-home__deco-left-2,.p-home__deco-left-3,.p-home__deco-right-1,.p-home__deco-right-2,.p-home__deco-right-3{border-radius:10px;width:25px;height:6px;position:absolute}.p-home__deco-left-1{background-color:var(--color-orange);border-radius:15px;width:35px;height:8px;top:20%;left:-30px;transform:rotate(-20deg)}.p-home__deco-left-2{background-color:var(--color-teal);width:45px;top:40%;left:-45px;transform:rotate(-10deg)}.p-home__deco-left-3{background-color:var(--color-yellow,#ffb800);width:30px;top:60%;left:-30px;transform:rotate(10deg)}.p-home__deco-right-1{background-color:var(--color-teal);width:30px;top:25%;right:-35px;transform:rotate(20deg)}.p-home__deco-right-2{background-color:var(--color-yellow,#ffb800);width:40px;top:45%;right:-45px;transform:rotate(10deg)}.p-home__deco-right-3{background-color:var(--color-orange);width:25px;top:65%;right:-30px;transform:rotate(-15deg)}.p-home__deco-dot-left{background-color:var(--color-teal);border-radius:50%;width:12px;height:12px;position:absolute;bottom:0;left:-20px}.p-home__deco-dot-right{background-color:var(--color-orange);border-radius:50%;width:10px;height:10px;position:absolute;top:55%;right:-10px}.p-home__deco-heart{color:var(--color-teal);font-size:2rem;position:absolute;bottom:-20px;right:-40px;transform:rotate(15deg)}.p-home__promo-orange{color:var(--color-orange);letter-spacing:2px;text-transform:uppercase;font-size:3rem;font-weight:900}.p-home__promo-teal-text{color:var(--color-teal);text-transform:uppercase;font-size:2.5rem;font-weight:900}.p-home__subtitle{color:var(--color-teal-dark);letter-spacing:.5px;text-transform:uppercase;margin-top:10px;font-family:Arial Narrow,sans-serif;font-size:1.2rem;font-weight:800}.p-home__subtitle-highlight{color:var(--color-orange)}.p-home__footer{text-align:center;margin-top:2rem}.p-home__footer-text{color:var(--color-teal-dark);font-weight:500}.p-home__footer-highlight{color:var(--color-orange)}.p-home__pv-badge{border:1px solid var(--color-teal);color:var(--color-teal-dark);background:#0478731a;border-radius:50px;align-items:center;gap:8px;margin-bottom:1.5rem;padding:8px 16px;font-size:.9rem;font-weight:700;display:flex;box-shadow:0 4px 12px #0000000d}.p-home__pv-name{color:var(--color-red);text-transform:uppercase}.o-mothers-day-banner{background:linear-gradient(135deg, var(--color-teal), var(--color-teal-light));color:var(--color-white);border-radius:var(--radius-md);text-align:center;margin-bottom:24px;padding:16px;position:relative;overflow:hidden}.o-mothers-day-banner:after{content:"";background:radial-gradient(circle,#fff3 0%,#0000 60%);width:200%;height:200%;animation:3s infinite pulse-soft;position:absolute;top:-50%;left:-50%}.o-mothers-day-banner__content{z-index:2;position:relative}.o-mothers-day-banner__title{margin-bottom:4px;font-size:1.25rem}.o-mothers-day-banner__highlight{color:var(--color-yellow);margin-bottom:8px;font-size:1.5rem}.o-mothers-day-banner__subtitle{font-size:1.9rem;font-weight:600}.m-reward-molecule{perspective:1000px;justify-content:center;align-items:center;margin:2rem 0;display:flex}.m-reward-molecule__image-container{background:var(--color-white);border-radius:24px;width:380px;height:380px;transition:transform .3s;position:relative;overflow:hidden;box-shadow:0 25px 50px #0000004d}.m-reward-molecule__image{object-fit:cover;width:100%;height:100%;transition:transform .5s}.m-reward-molecule__image-container:hover .m-reward-molecule__image{transform:scale(1.1)}.m-reward-molecule__shine{pointer-events:none;background:linear-gradient(45deg,#0000,#fff6,#0000);width:200%;height:200%;animation:3s infinite shine;position:absolute;top:-50%;left:-50%;transform:rotate(45deg)}@keyframes shine{0%{left:-150%}to{left:150%}}.animate-scale-in{animation:.8s cubic-bezier(.175,.885,.32,1.275) forwards scaleIn}@keyframes scaleIn{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.p-ganaste{flex-direction:column;align-items:center;gap:0;width:100%;padding-bottom:1rem;display:flex}.p-ganaste__result{text-align:center}.p-ganaste__title{background:var(--color-teal);color:#fff;border-radius:8px;margin:0;padding:0 12px;font-size:1.8rem;display:inline-block;transform:rotate(-2deg)}.p-ganaste__prize-name{color:var(--color-teal-dark);font-size:3rem;margin:10px 0 -10px!important}.p-ganaste__instructions{border-radius:var(--radius-md);color:var(--color-teal-dark);background-color:#e6f3f3;align-items:center;gap:12px;width:100%;padding:16px;font-weight:500;display:flex}.p-ganaste__icon-container{border:2px solid var(--color-teal-light);background-color:#fff;border-radius:8px;padding:12px}.p-ganaste__description{flex:1;font-size:.875rem}.p-ganaste__footer{width:100%}.p-ganaste__footer-text{text-align:center;color:var(--color-teal-dark);margin-bottom:1rem;font-size:.875rem;font-weight:500}.p-ganaste__social-button{justify-content:center;align-items:center;gap:8px;display:flex}.background-decorations{pointer-events:none;z-index:1;width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden}.background-decorations-image{filter:blur(30px);opacity:.8;background-position:50%;background-repeat:no-repeat;background-size:cover;width:100%;height:100%;position:absolute;top:0;left:0}.m-product-card{border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);border:1px solid var(--color-border);background:#fff;width:100%;max-width:280px;margin:20px auto;transition:transform .3s;overflow:hidden}.m-product-card:hover{transform:translateY(-5px)}.m-product-card__image-container{height:180px;position:relative;overflow:hidden}.m-product-card__image{object-fit:cover;width:100%;height:100%;transition:transform .5s}.m-product-card:hover .m-product-card__image{transform:scale(1.1)}.m-product-card__badge{background:var(--color-red);color:#fff;border-radius:var(--radius-full);font-size:.75rem;font-weight:700;font-family:var(--font-primary);box-shadow:var(--shadow-md);padding:4px 10px;position:absolute;top:12px;right:12px}.m-product-card__content{text-align:center;padding:16px}.m-product-card__title{color:var(--color-teal-dark);font-size:1.25rem;font-family:var(--font-primary);text-transform:uppercase;margin-bottom:4px}.m-product-card__description{color:var(--color-text-muted);font-size:.875rem;font-family:var(--font-secondary)}.o-promo-page{background-color:var(--color-offwhite);text-align:center;flex-direction:column;min-height:100vh;padding:32px 24px;display:flex}.o-promo-page__header{margin-bottom:24px}.o-promo-page__logo{width:60px;height:60px;margin-bottom:16px;animation:2s infinite pulse-soft}.o-promo-page__title{font-family:var(--font-primary);color:var(--color-text);margin-bottom:12px;font-size:1.5rem;font-weight:800;line-height:1.2}.o-promo-page__title-brand{color:var(--color-teal);font-size:1.75rem;display:block}.o-promo-page__subtitle{color:var(--color-text-muted);font-size:1rem;font-family:var(--font-secondary)}.o-promo-page__error-banner{background-color:var(--color-red);color:#fff;border-radius:var(--radius-md);font-family:var(--font-primary);margin-top:16px;padding:10px;font-size:.9rem;font-weight:600;animation:2s infinite pulse-soft}.o-promo-page__content{flex-direction:column;flex:1;justify-content:center;gap:24px;display:flex}.o-promo-page__cta-box{border-radius:var(--radius-md);border:2px dashed var(--color-teal-light);background:#fff;flex-direction:column;align-items:center;gap:12px;padding:20px;display:flex}.o-promo-page__cta-icon{color:var(--color-orange)}.o-promo-page__cta-text{font-family:var(--font-primary);color:var(--color-text);font-size:1.125rem;font-weight:600}.o-promo-page__cta-highlight{color:var(--color-red);font-weight:800}.o-promo-page__footer{margin-top:32px}.a-button--promo{width:100%;background-color:var(--color-teal)!important;color:#fff!important;border-radius:var(--radius-full)!important;box-shadow:var(--shadow-md)!important;border:none!important;justify-content:center!important;align-items:center!important;gap:8px!important;padding:18px!important;font-size:.9rem!important;font-weight:700!important;display:flex!important}.a-button--promo:hover{transform:scale(1.02);background-color:var(--color-teal-dark)!important}.mr-2{margin-right:8px}.p-not-found{text-align:center;flex-direction:column;justify-content:center;align-items:center;gap:2rem;padding:2rem;display:flex}.p-not-found__content{flex-direction:column;flex:1;justify-content:center;align-items:center;gap:1.5rem;max-width:320px;display:flex}.p-not-found__icon-container{width:120px;height:120px;box-shadow:var(--shadow-lg);border:4px solid var(--color-teal);background:#fff;border-radius:50%;justify-content:center;align-items:center;margin-bottom:1rem;display:flex}.p-not-found__icon{color:var(--color-orange);font-size:3rem;font-weight:800;font-family:var(--font-primary)}.p-not-found__title{color:var(--color-teal);text-transform:uppercase;font-size:1.75rem;line-height:1.1}.p-not-found__text{color:var(--color-text-muted);font-size:1rem;line-height:1.5}.p-not-found__button{background-color:var(--color-orange);color:#fff;border-radius:var(--radius-full);font-family:var(--font-primary);cursor:pointer;box-shadow:var(--shadow-md);border:none;margin-top:1rem;padding:1rem 2rem;font-size:1.1rem;font-weight:700;transition:transform .2s,background-color .2s}.p-not-found__button:active{background-color:var(--color-orange-dark);transform:scale(.95)}.p-not-found__footer{margin-top:auto;padding-bottom:2rem}.p-not-found__footer-text{color:var(--color-text-muted);font-size:.9rem;font-family:var(--font-primary);text-transform:uppercase;font-weight:600}.p-not-found__footer-highlight{color:var(--color-teal);font-size:1.1rem;font-weight:800}
