:root {
    --color-white: rgba(255, 255, 255, 1);
    --color-black: rgba(0, 0, 0, 1);
    --color-bg-primary: rgba(245, 245, 245, 1);
    --color-text-primary: rgba(19, 52, 59, 1);
    --color-text-secondary: rgba(98, 108, 113, 1);
    --color-primary: rgba(33, 128, 141, 1);
    --color-primary-hover: rgba(29, 116, 128, 1);
    --color-success: rgba(45, 166, 178, 1);
    --color-border-unselected: rgba(33, 128, 141, 1);
    --color-border-selected: rgba(76, 175, 80, 1);
    --color-focus-ring: rgba(33, 128, 141, 0.4);
}

#formulario_seccion{
    background-image: url(../img/mesa_central_paso2.webp);
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    position: relative;
}
.titformprev{
    color: #FFFFFF;
    text-align: center;
    font-family: Fragtude;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin: 0;
}
.txtfvplt{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.025px;
    margin: 0 0 100px 0;
}
#formulario_seccion .imagen1_form {
    width: 130px;
    animation: movrama 3s ease-in-out infinite;
    position: fixed;
    top: 40px;
    left: -2px;
    z-index: 99;
}
#formulario_seccion .imagen2_form {
    width: 130px;
    animation: movrama 3s ease-in-out infinite;
    position: fixed;
    bottom: 15px;
    right: 0;
    z-index: 99;
}
.contplt_sev{
    width: 12%;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.imgplt{
    width: 82px;
    padding: 8px 4px 0;
    background: #01C5C6;
    border-radius: 50%;
    transition: .3s all;
}
.imgplt:hover{
    box-shadow: 0 5.14px 5.14px 0 rgba(0, 0, 0, 0.25);
}

.container {
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.header p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* Contenedor de pasos */
.steps-container {
    position: relative;
}
.steps-containerLimit{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
    position: relative;
    z-index: 9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PASO 1: Selección de Platos */
.dishes-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 75%;
    margin: 0 auto;
}

.dish-checkbox {
    position: relative;
    cursor: pointer;
}

.dish-checkbox input {
    display: none;
}

.dish-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 4px solid transparent;
    border-radius: 50%;
    padding: 5px 5px;
}

.dish-checkbox input:checked + .dish-label {
    border-color: #002559;
}

.dish-checkbox input:checked + .dish-label .imgplt{
    background: #72AD2B;
}

.cnt_nameplt{
    position: absolute;
    top: -45px;
    width: calc(100% - 20px);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.dish-name {
    color: #FFFFFF;
    font-family: "Helvetica LT";
    font-size: 15.073px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    margin: 0;
}

/* Checkmark */
.checkmark {
    position: absolute;
    top: -8px;
    right: -1px;
    width: 24px;
    height: 24px;
    background: var(--color-border-selected);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #FFF;
}

.dish-checkbox input:checked + .dish-label .checkmark {
    opacity: 1;
    transform: scale(1);
}

.checkmark svg {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Info button */
.info-btn {
    position: absolute;
    bottom: -2px;
    right: -3px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Controles del formulario */
.form-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.buttons {
    display: flex;
    gap: 12px;
}

.btn_next_form {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.23px;
    border-radius: 37.23px;
    background: #01C5C6;
}

.btn_next_form:disabled {
    opacity: .8;
    cursor: not-allowed;
}

.btn-secondary {
    border: 2px solid #002559;
    color: #002559;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    background: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgb(46 161 177 / 20%);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Placeholder para próximos pasos */
.step-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-placeholder h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.step-placeholder p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .dishes-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }

    .header h1 {
        font-size: 24px;
    }

    .form-controls {
        flex-direction: column;
        gap: 20px;
    }

    button {
        flex: 1;
    }
}

/* Tooltip info */
.tooltip {
    position: absolute;
    bottom: 99%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #002559;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    max-width: 290px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: none;
    width: 290px;
    font-family: "Helvetica LT";
    line-height: 14px;
    font-weight: 700;
}

.tooltip.active {
    opacity: 1;
    display: block;
    pointer-events: auto;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}
.mensajeLimite{
    position: absolute;
    bottom: -69px;
    color: #002559;
    font-family: "Helvetica LT";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #FFB543;
    background: #FFF8EC;
    padding: 10px 12px;
}

.mensajeLimite img{
    margin-right: 8px;
}
.hiddenmenplt{
    opacity: 0;
}


/*******PASO 2**********/
/* PASO 2: Values Selection */
.step2-custom {
    width: 60%;
    margin: 0 auto;
}

.imgcarta{
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1.0s ease;
}
.imgcartaForm{
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1.0s ease;
}
.imgcandy{
    width: 240px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: calc(50% - 520px);
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1s ease, transform 0.5s ease;
}
.imgnav{
    width: 130px;
    position: fixed;
    z-index: 0;
    top: 50%;
    left: calc(100% - 66px);
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: left 1s ease, opacity 0.5s ease;
}
.imgcartamv{
    width: 115%;
    height: 490px;
    position: absolute;
    z-index: 0;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1.0s ease;
}
.imgcartaescr{
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1.0s ease;
}

.fadeOutForm{
    opacity: 0;
}
.fadeOutCmv{
    opacity: 0;
}
.fadeOutCt{
    opacity: 0;
}
.fadeOutNav{
    left: calc(100% + 30px);
    opacity: 0;
}
.fadeOutCdy{
    opacity: 0;
    transform: translate(-50%, -50%) rotate(13deg);
}
.step2-custom h2 {
    color: #002559;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-family: Fragtude;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-top: 0;
}

.step2-custom p {
    color: #002559;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0 0 60px 0;
}

.values-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.value-option {
    position: relative;
    width: calc(33.33% - 15px);
}

.value-option input[type="radio"] {
    display: none;
}

.value-label {
    padding: 12px 20px;
    border-radius: 25px;
    background: #E6F0FF;
    cursor: pointer;
    transition: .3s all;
    position: relative;
    color: #002559;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    display: block;
    border: 2px solid #E6F0FF;
}

.value-option input[type="radio"]:checked + .value-label {
    background: #002559;
    color: white;
    border: 2px solid #72AD2B;
    box-shadow: 0 4px 12px rgba(0, 37, 89, 0.2);
}

.value-label:hover {
    background: #002559;
    box-shadow: 0 7px 11.5px 0 rgba(0, 0, 0, 0.23);
    color: #FFFFFF;
    border: 2px solid #002559;
}

.value-option input[type="radio"]:checked + .value-label::before {
    content: '';
    position: absolute;
    background-image: url(../img/platos/select.svg);
    height: 30px;
    width: 30px;
    top: -12px;
    right: -7px;
}
.cont_twostep{
    position: relative;
    width: 80%;
    margin: 0 auto;
}
#nextBtn2:disabled {
    opacity: .8;
    cursor: not-allowed;
}




/*******PASO 3**********/
/* PASO 3: Estilos Selection */
.step3-custom {
    width: 45%;
    margin: 0 auto;
}

.step3-custom h2 {
    color: #002559;
    text-align: center;
    font-family: 'Fragtude', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step3-custom p {
    color: #002559;
    text-align: center;
    font-family: "Helvetica LT", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 20px;
}

.styles-grid {
    display: flex;
    gap: 45px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.style-option {
    position: relative;
    width: calc(50% - 24px);
}

.style-option input[type="radio"] {
    display: none;
}

.style-label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dvimchk{
    position: relative;
}
.style-image {
    width: 100%;
    border-radius: 28px;
    border: 5px solid transparent;
}

.style-option input[type="radio"]:checked + .style-label .style-image{
    border: 5px solid #002559;
}

.style-label:hover {
    border-color: #01C5C6;
    box-shadow: 0 6px 16px rgba(1, 197, 198, 0.15);
}

.style-name {
    display: block;
    padding: 12px 16px;
    color: #002559;
    font-family: "Helvetica LT", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.style-checkmark {
    position: absolute;
    top: -8px;
    right: -16px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.style-checkmark img{
    width: 30px;
}

.style-option input[type="radio"]:checked + .style-label .style-checkmark {
    opacity: 1;
    transform: scale(1);
}



/******* PASO 4 ********/
.step4-custom {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

.step4-custom h2 {
    color: #002559;
    font-family: Fragtude;
    font-size: 40px;
    font-weight: 400;
    line-height: 37px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.step4-custom p {
    color: #002559;
    font-family: "Helvetica LT";
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.field-wrapper {
    width: 100%;
    margin: 0 auto 60px auto;
}

.input-nombre {
    width: 90%;
    padding: 14px 18px;
    background: transparent;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-weight: 400;
    color: #002559;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border-radius: 4px;
    border: 1px solid #002559;
}

.input-nombre::placeholder {
    color: #9BA4B5;
}

.input-nombre:focus {
    border-color: #01C5C6;
    box-shadow: 0 0 0 2px rgba(1, 197, 198, 0.25);
}

.buttons-step4 {
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .step4-custom {
        width: 80%;
    }
}


/******* PASO 5: Generando *******/
.step5-loading {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.loading-text {
    color: #FFFFFF;
    text-align: center;
    font-family: Fragtude;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/******* PASO 6: Mira tu video *******/
.step6-video {
    width: 87%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    gap: 75px;
    align-items: center;
}
.convid6O{
    margin-top: -20px;
}

.title-video {
    color: #002559;
    font-family: Fragtude;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

.video-card {
    position: relative;
    /*scale: .8;*/
}

.video-preview {
    width: 65%;
    border-radius: 22px;
    display: block;
    margin: 0 auto;
}

.video-controls {
    display: inline-flex;
    gap: 12px;
    padding: 8px 18px 5px;
    border-radius: 25px;
    position: absolute;
    bottom: 29px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    background: rgba(255, 255, 255, 0.78);
}

.btn-video {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #002559;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .3s all;
}
.btn-video span{
    line-height: 1;
}

.btn-video:hover {
    background: #01C5C6;
}

.buttons-step6 {
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.btnanimcvns{
    background: transparent;
    border: none;
    padding: 0;
}



/******* PASO 7: Saludo bonito *******/
.step7-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 90%;
    margin: 0 auto;
}

.step7-card {
    flex: 0 0 40%;
    position: relative;
}

.step7-image {
    width: 100%;
    display: block;
    rotate: 1.8deg;
}
.step7-imageCard {
    width: 100%;
    display: block;
    rotate: -1.2deg;
}
.step7-imageCard {
    width: 105%;
    display: block;
    rotate: -1.2deg;
}
.step7-image-manos{
    position: absolute;
    top: 120px;
    right: 7px;
    width: 138px;
    rotate: 1.8deg;
    z-index: 1;
}
#textoSelc{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    position: absolute;
    top: 25px;
    rotate: -1.1deg;
    width: 74%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}
#textoSelc p{
    font-family: Fragtude;
    font-size: 33px;
    font-weight: 400;
    line-height: 41px;
    margin: 6px 0 0 0;
}
.estrtarjeta{
    position: absolute;
    left: -35px;
    top: 1px;
    z-index: 9;
}
#platoSelc{
    position: absolute;
    top: calc(50% + 14px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
}

.step7-right {
    flex: 0 0 50%;
    text-align: center;
}

.step7-title {
    color: #002559;
    font-family: Fragtude;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 40px;
    margin: 0 0 24px 0;
    text-align: center;
}

.step7-textarea-wrapper {
    position: relative;
    margin-bottom: 20px;
}
.linacard{
    position: absolute;
    top: 8px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    rotate: 2deg;
    z-index: -1;
}

.step7-textarea {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 8px 0;
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    font-family: "Helvetica LT";
    font-size: 16px;
    color: #002559;
    z-index: 2;
    line-height: 2;
    margin-top: -19px;
}

.step7-textarea::placeholder {
    color: #9BA4B5;
}

/* Líneas tipo cuaderno */
.step7-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 18px,
        rgba(0, 37, 89, 0.4) 18px,
        rgba(0, 37, 89, 0.4) 19px
    );
    pointer-events: none;
    opacity: 0.6;
    border-radius: 2px;
}

.step7-subtitle {
    color: #002559;
    font-family: "Helvetica LT";
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0 16px 0;
}
.step6-subtitle {
    color: #002559;
    font-family: "Helvetica LT";
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0 16px 0;
}

.step7-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    justify-content: center;
}

.btn-social {
    border-radius: 24px;
    border: none;
    background: #01C5C6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 13px 26px;
    color: #FFF;
    text-decoration: none;
    line-height: 1;
}
.btn-social img {
    width: 22px;
    height: 22px;
}

.step7-download {
    display: inline-block;
    margin-bottom: 24px;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-weight: 700;
    color: #002559;
    text-decoration: underline;
}

.buttons-step7 {
    justify-content: center;
    rotate: -1.5deg;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .step7-wrapper {
        flex-direction: column;
        width: 95%;
    }

    .step7-card,
    .step7-right {
        flex: 0 0 100%;
    }

    .step7-image {
        max-width: 100%;
    }
}
.divconvidecvs{
    text-align: center;
}
#videoCVS{
    width: 90%;
    border-radius: 20px;
}




.imgcartaCard{
    height: 100vh;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 1.0s ease;
}
.contendor_tarjeta{
    height: 100vh;
    background-image: url(../img/mesa-vista-cenital.webp);
    background-position: center;
    background-size: cover;
    width: 100%;
}
#tarjeta_share{
    background-image: url(../img/mesa-vista-cenital.webp);
    background-position: center;
    background-size: cover;
}
.step7-wrapperCard{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 100vh;
    margin: 0 auto;
    width: 650px;
}
#tarjeta_share {
    width: 100%;
    margin: 0 auto;
    z-index: -1;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.txtsaludo_tarjeta{
    color: #002559;
    text-align: center;
    font-family: "Dancing Script";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    position: relative;
    z-index: 9;
    padding-right: 30px;
    margin: 25px 0 0 0;
}
.titfelnav{
    position: relative;
    z-index: 9;
    color: #002559;
    text-align: center;
    font-family: Fragtude;
    font-size: 43px;
    font-style: normal;
    font-weight: 400;
    line-height: 38.022px;
    margin: 0;
}
#textoSelcCard{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    position: absolute;
    top: 29px;
    rotate: -1.1deg;
    width: 78%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}
#textoSelcCard p{
    font-family: Fragtude;
    font-size: 28px;
    font-weight: 400;
    line-height: 26px;
    margin: 6px 0 0 0;
}
#platoSelcCard{
    position: absolute;
    top: calc(50% + 40px);
    left: calc(50% + 3px);
    transform: translate(-50%, -50%);
    width: 131px;
}
#platoSelcCard-2{
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 80px);
    transform: translate(-50%, -50%);
    width: 87px;
}
#platoSelcCard-3{
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% + 80px);
    transform: translate(-50%, -50%);
    width: 76px;
}
#platoSelcCard-4{
    position: absolute;
    top: calc(50% + 119px);
    left: calc(50% - 83px);
    transform: translate(-50%, -50%);
    width: 79px;
}
#platoSelcCard-5{
    position: absolute;
    top: calc(50% + 113px);
    left: calc(50% + 90px);
    transform: translate(-50%, -50%);
    width: 85px;
}
.txtnombre_tarjetaCard{
    color: #002559;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.039px;
    margin: 25px 0 0 0;
}
.txtsaludo_tarjetaCard {
    color: #002559;
    text-align: center;
    font-family: "Dancing Script";
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    z-index: 9;
    padding-right: 15px;
    margin: 25px 0 0 0;
}

.estrtarjetaCard {
    position: absolute;
    left: -41px;
    top: -22px;
    z-index: 9;
    width: 74px;
}
.step7-image-manosCard{
    position: absolute;
    top: 5px;
    left: 11px;
    width: 100%;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardT{
    position: absolute;
    top: 96px;
    left: 58px;
    width: 58px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardTh{
    position: absolute;
    top: 76px;
    left: -9px;
    width: 93px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardF{
    position: absolute;
    top: 84px;
    right: 59px;
    width: 64px;
    rotate: 1.8deg;
    z-index: 1;
}

.step7-image-manosCardFv{
    position: absolute;
    top: 68px;
    right: 0;
    width: 74px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardS{
    position: absolute;
    bottom: 2px;
    left: 15px;
    width: 61px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardSv{
    position: absolute;
    top: 172px;
    right: 4px;
    width: 68px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardH{
    position: absolute;
    top: 201px;
    right: 24px;
    width: 58px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardN{
    position: absolute;
    top: 211px;
    left: 10px;
    width: 78px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardTn{
    position: absolute;
    top: 197px;
    left: 10px;
    width: 66px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardEl{
    position: absolute;
    bottom: 3px;
    left: 69px;
    width: 57px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardTw{
    position: absolute;
    bottom: 3px;
    right: 65px;
    width: 61px;
    rotate: 1.8deg;
    z-index: 1;
}
.step7-image-manosCardTr{
    position: absolute;
    top: 32px;
    left: 10px;
    width: 30px;
    rotate: 1.8deg;
    z-index: 1;
}








.btn-social[disabled],
.btn-social-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}



/*****PANTALLA 8****/
.stepend{
    width: 100%;
    min-height: calc(100vh - 70px);
}
.cotprinform{
    display: flex;
    align-items: center;
    height: 100%;
}
.contOFrm{
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
}
.contfrm{
    border-radius: 0 44px 44px 0;
    background: #002559;
    box-shadow: 0 12px 19.1px 0 rgba(0, 0, 0, 0.25);
    height: 90%;
    width: 100%;
    padding: 15px 115px;
    display: flex;
    align-items: center;
}
.contTImg{
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contfrm form{
    text-align: center;
}
.conimgredes{
    text-align: center;
}


#imgcomprTar{
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.titformend{
    color: #01C5C6;
    text-align: center;
    font-family: Fragtude;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin: 0;
}
.regform{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0 0 15px 0;
}
.fchasort{
    color: #FFFFFF;
    font-family: "Helvetica LT";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    margin: 20px 0 8px 0;
    text-align: left;
}
.linkterm{
    color: #FFFFFF;
    font-family: "Helvetica LT";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    display: block;
    margin: 0 0 25px 0;
    text-align: left;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
    -webkit-appearance: none; 
}

input[type=number] { 
    -moz-appearance:textfield; 
}

.dflxinpt{
    display: flex;
    gap: 15px;
}
.iptflx{
    color: #6D809D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 4px;
    border: 1px solid #9DAABD;
    background: #FFF;
    width: calc(100% - 35px);
    height: 44px;
    margin-top: 18px;
    padding: 0px 17px;
}

.inpForm{
    color: #6D809D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 4px;
    border: 1px solid #9DAABD;
    background: #FFF;
    width: calc(100% - 35px);
    height: 44px;
    margin-top: 18px;
    padding: 0px 17px;
}
.selForm{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #6D809D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 4px;
    border: 1px solid #9DAABD;
    background: #FFF;
    width: 100%;
    height: 44px;
    margin-top: 18px;
    padding: 0px 17px;
    background-image: url('../img/slect_down.svg'); /* Ruta del ícono */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Posiciona el icono a la derecha */
    background-size: 30px;
}
.inpForm:focus, .selForm:focus{
    outline: none;
}


.continptched{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lblcondchk{
    color: #FFFFFF;
    font-family: "Helvetica LT";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.btnenv_form{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border-radius: 24px;
    background: #01C5C6;
    border: none;
    margin-top: 23px;
    cursor: pointer;
    padding: 15px 36px;
}
.redtxt{
    color: #FFFFFF;
    text-align: center;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    margin: 10px 0 0 0;
}
.contendsocials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}
.redfultrj{
    border-radius: 24px;
    border: none;
    background: #01C5C6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 11px 23px;
}
.downloadtarjet{
    color: #FFFFFF;
    font-family: "Helvetica LT";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
}
.volshare{
    color: #FFFFFF;
    text-align: center;
    font-family: Fragtude;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin: 0 0 20px 0;
}

.contvidfomrend{
    position: relative;
}
.imgcarendfrm{
    width: 77%;
}
.dvflxend{
    right: 0;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    width: 70%;
    margin: -6px 0 0 0;
}
.endflxO{
    width: 45%;
}
#videoCVSEnd{
    position: relative;
    width: 100%;
    height: 368px;
    border-radius: 20px;
    left: 12px;
}
.endflxT{
    width: 55%;
    padding: 0 20px;
}
.titsaldoend{
    color: #002559;
    text-align: center;
    font-family: Fragtude;
    font-size: 36.212px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin: 0 0 15px 0;
}
.txtdatosaludo{
    color: #002559;
    text-align: center;
    font-family: "Dancing Script";
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.557px;
    margin: 0;
}
.dpnnoe{
    display: none !important;
}
.imgfoco{
    position: fixed;
    top: 16px;
    left: 0;
    width: 50%;
}


@media(min-width:100px){
    #tarjeta_share{
        display: none;
    }
    .titformprev {
        font-size: 31px;
        line-height: 33px;
    }
    .txtfvplt {
        font-size: 16px;
        margin: 0 0 70px 0;
    }
    .dishes-grid {
        width: 95%;
    }
    #formulario_seccion .imagen1_form {
        width: 100px;
        z-index: 9;
    }
    #formulario_seccion .imagen2_form {
        width: 95px;
        z-index: 9;
    }
    .dish-name {
        font-size: 13px;
        line-height: 15px;
    }
    .cnt_nameplt {
        top: -37px;
    }
    .contplt_sev {
        width: 29%;
        margin-bottom: 40px;
    }
    .imgplt {
        width: 70px;
    }
    .btn_next_form {
        padding: 7px 20px;
        font-size: 16px;
        line-height: 37.23px;
    }
    .tooltip {
        padding: 12px 10px;
        font-size: 11px;
        max-width: 115px;
        width: 290px;
        font-weight: 400;
    }
    .dish-label {
        padding: 7px 5px;
    }
    .dish-checkbox {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .stepOne{
        padding: 45px 0 115px;
    }
    .mensajeLimite {
        bottom: 15px;
    }
    .imgcarta {
        width: auto;
        top: calc(50% + 64px);
        height: calc(100vh + 8px);
    }
    .imgcartaForm {
        width: auto;
        top: -40px;
        height: calc(1000vh + 8px);
		
    }
    #formulario_seccion {
        overflow: hidden;
    }
    .imgcandy , .imgnav, .nomvview{
        display: none;
    }
    .cont_twostep {
        width: 90%;
    }
    .step2-custom, .step3-custom {
        width: 100%;
        text-align: center;
    }
    .step2-custom h2, .step3-custom h2, .step4-custom h2 {
        font-size: 31px;
        line-height: 44px;
    }
    .value-option {
        width: 45%;
    }
    .value-label {
        padding: 10px 20px;
        font-size: 16px;
        line-height: 27px;
    }
    .buttons {
        display: inline-flex;
    }
    .style-name {
        font-size: 17px;
    }
    .step6-video {
        width: 100%;
        justify-content: center;
        display: block;
        padding-top: 89px;
    }
    #canvasCaja{
        border: none;
        width: 255px;
        height: 346px;
        border-radius: 25px;
    }
    .title-video {
        font-size: 28px;
        margin: 0 0 5px 0;
        line-height: 28px;
    }
    .loading-logo {
        width: 80px;
    }
    .step7-subtitle, .step7-download {
        font-size: 14px;
        color: #FFFFFF;
    }
    .step7-subtitle {
        margin-top: 110px;
    }
    .step6-subtitle {
        margin-top: 0px;
    }
    .buttons-step6 {
        margin-top: 25px;
    }
    .video-controls {
        gap: 12px;
        padding: 5px 13px 1px;
        bottom: 13px;
    }
    .step7-wrapper {
        width: 100%;
        padding: 80px 0 50px;
    }
    #videoCVS {
        width: 65%;
		display: none;
    }
    .step7-title {
        font-size: 31px;
        line-height: 30px;
        margin: 0 0 24px 0;
    }
    .contTImg {
        display: none;
    }
    .contOFrm {
        width: 100%;
    }
    .contfrm {
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        height: 100%;
        width: 100%;
        padding: 0 20px;
    }
    .inpForm {
        height: 40px;
        margin-top: 9px;
    }
    .stepend {
        padding: 100px 0 0;
    }
    .titformend {
        color: #002559;
        font-size: 35px;
    }
    .regform {
        color: #002559;
    }
    .fchasort, .linkterm, .lblcondchk{
        color: #4A586E;
    }
}

@media(min-width:992px){
    .regform, .fchasort, .linkterm, .lblcondchk{
        color: #FFFFFF;
    }
    .titformend {
        color: #01C5C6;
        font-size: 40px;
    }
    .stepend {
        padding: 0 0 0;
        height: calc(100vh - 70px);
    }
    .inpForm {
        height: 44px;
        margin-top: 18px;
    }
    .contfrm {
        border-radius: 0 44px 44px 0;
        background: #002559;
        box-shadow: 0 12px 19.1px 0 rgba(0, 0, 0, 0.25);
        height: 90%;
        width: 100%;
        padding: 15px 115px;
    }
    .contOFrm {
        width: 45%;
    }
    .contTImg {
        display: flex;
    }
    .step7-title {
        font-size: 36px;
        line-height: 40px;
        margin: 0 0 24px 0;
    }
    #videoCVS {
        width: 90%;
		display: block;
    }
    .step7-wrapper {
        width: 83%;
        padding: 0;
    }
    .video-controls {
        gap: 12px;
        padding: 8px 18px 5px;
        bottom: -45px;
    }
    .buttons-step6 {
        margin-top: 40px;
    }
    .step7-subtitle, .step7-download {
        font-size: 15px;
        color: #002559;
    }
    .step7-subtitle {
        margin-top: 0;
    }
    .step6-subtitle {
        margin-top: 0;
    }
    .loading-logo {
        width: 120px;
    }
    .title-video {
        font-size: 40px;
        margin: 0 0 30px 0;
        line-height: 45px;
    }
    .noesrcview{
        display: none;
    }
    #canvasCaja{
        width: 360px;
        height: 465px;
    }
    .step6-video {
        width: 87%;
        justify-content: start;
        display: flex;
        padding-top: 0;
    }
    .style-name {
        font-size: 20px;
    }
    .buttons {
        display: flex;
    }
    .value-label {
        padding: 12px 20px;
        font-size: 18px;
        line-height: 27px;
    }
    .value-option {
        width: calc(33.33% - 15px);
    }
    .step2-custom h2, .step3-custom h2, .step4-custom h2 {
        font-size: 40px;
        line-height: 42px;
    }
    .step3-custom {
        width: 45%;
    }
    .step2-custom {
        width: 60%;
    }
    .cont_twostep {
        width: 80%;
    }
    .imgcandy , .imgnav, .nomvview{
        display: block;
    }
    #formulario_seccion {
        overflow: auto;
    }
    .imgcarta {
        width: 100%;
        top: 50%;
        height: auto;
    }
    .mensajeLimite {
        bottom: -69px;
    }
    .stepOne{
        padding: 0;
    }
    .dish-checkbox {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .dish-label {
        padding: 5px 5px;
    }
    .tooltip {
        padding: 12px 10px;
        font-size: 13px;
        max-width: 290px;
        width: 290px;
        font-weight: 700;
    }
    .btn_next_form {
        padding: 10px 24px;
        font-size: 17px;
        line-height: 37.23px;
    }
    .imgplt {
        width: 82px;
    }
    .cnt_nameplt {
        top: -45px;
    }
    .dish-name {
        font-size: 15px;
        line-height: 18px;
    }
    #formulario_seccion .imagen1_form {
        z-index: 99;
        width: 130px;
    }
    #formulario_seccion .imagen2_form {
        z-index: 99;
        width: 130px;
    }
    .dishes-grid {
        width: 75%;
    }
    .contplt_sev {
        width: 12%;
        margin-bottom: 50px;
    }
    .txtfvplt {
        font-size: 24px;
        margin: 0 0 100px 0;
    }
    .titformprev {
        font-size: 40px;
        line-height: 40px;
    }
}

