/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FSAlbert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: #0A3B59;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 874px;
    max-width: 402px;
    margin: 0 auto;
    overflow: hidden;
}

/* Fondo */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #17B5E7 0%, #0D3FB9 73%, #0A3B59 100%);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg-img-rulette.png');
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 62, 93, 0.2);
}

/* Confeti decorativo */
.confeti {
    position: absolute;
    top: 156px;
    left: -8px;
    width: 100%;
    height: 729px;
    z-index: 2;
    pointer-events: none;
}

.confeti-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Logo */
.logo-container {
    position: absolute;
    top: 44px;
    left: calc(100vw - 70%);
    transform: translateY(1%);
    z-index: 3;
}

.logo {
    width: 193px;
    height: 119px;
    object-fit: contain;
}

/* Card principal */
.card-recuerda {
    position: absolute;
    top: 276px;
    left: 50%;
    transform: translateX(-50%);
    width: 344px;
    height: 352px;
    z-index: 4;
}

.card-bg {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 307px;
    background: #FFFFFF;
    border-radius: 29px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

/* Círculo con campana */
.circle-bell {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    z-index: 5;
}

.bg-circle {
    width: 100%;
    height: 100%;
    background: #17B5E7;
    border-radius: 50%;
}

.ico-bell {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-icon {
    width: 39px;
    height: 40px;
    filter: brightness(0) invert(1); /* Hace el ícono blanco */
}

/* Contenido de la card */
.card-content {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 35px;
}

.title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 20px;
}

.description {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 40px;
    text-align: center;
}

/* Botón */
.btn-entiendo {
    background: #61388D;
    border: none;
    border-radius: 15px;
    width: 138px;
    height: 41px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.btn-entiendo:hover {
    background: #4F2A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-entiendo:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 375px) {
    .container {
        max-width: 100vw;
    }
    
    .card-recuerda {
        width: calc(100vw - 24px);
        left: calc(100vw - 50%);
        transform: none;
    }
    
    .logo {
        width: 160px;
        height: 98px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .description {
        font-size: 15px;
        padding: 0 20px;
    }
}

/* Responsive para pantallas más grandes (máximo 402px como diseñado) */
@media (min-width: 403px) {
    .container {
        max-width: 100%;
    }
}

/* Animaciones sutiles */
.logo {
    animation: fadeInDown 0.8s ease-out;
}

.card-recuerda {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.confeti {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(0%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0%) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== ESTILOS PARA LA PÁGINA DE RULETA ========== */

/* Contenido de la ruleta */
.ruleta-content {
    position: absolute;
    top: 237px;
    left: 50%;
    width: 100%;
    text-align: center;
    z-index: 4;
    padding: 0 27px;
}

.ruleta-title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #FFFFFF;
    margin-bottom: 13px;
}

.ruleta-description {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

/* Container de la ruleta */
.ruleta-container {
    position: relative;
    width: 360px;
    height: 383px;
    margin: 0 auto;
}

.ruleta-circulo {
    position: absolute;
    top: 23px;
    left: 0;
    width: 360px;
    height: 360px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ruleta-circulo:hover {
    transform: scale(1.02);
}

.ruleta-circulo.spinning {
    cursor: not-allowed;
}

.circulo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ruleta-flecha {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    z-index: 5;
}

.flecha-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Información legal */
.legal-info {
    position: absolute;
    bottom: 29px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.legal-info p {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #FFFFFF;
    margin: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal-info p:hover {
    opacity: 0.8;
}

/* Animaciones para la ruleta */
.ruleta-content {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.ruleta-container {
    animation: fadeInScale 1s ease-out 0.6s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive para la ruleta */
@media (max-width: 375px) {
    .ruleta-content {
        padding: 0 15px;
    }
    
    .ruleta-title {
        font-size: 28px;
    }
    
    .ruleta-description {
        font-size: 15px;
        max-width: 240px;
    }
    
    .ruleta-container {
        width: 320px;
        height: 343px;
    }
    
    .ruleta-circulo {
        width: 320px;
        height: 320px;
    }
    
    .ruleta-flecha {
        width: 50px;
        height: 50px;
    }
}

/* Estados de la ruleta */
.ruleta-circulo.spinning {
    pointer-events: none;
}

.ruleta-circulo.spinning:hover {
    transform: none;
}

/* Efecto de pulso para indicar que es clickeable */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.ruleta-circulo:not(.spinning) {
    animation: pulse 2s infinite;
    border-radius: 50%;
}

/* ========== ESTILOS PARA EL POPUP DE FELICITACIONES ========== */

/* Overlay del popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 62, 93, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Card del popup */
.popup-card {
    position: relative;
    width: 344px;
    height: 401px;
    max-width: 90vw;
    animation: popupSlideIn 0.5s ease-out;
}

.popup-bg {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 356px;
    background: #FFFFFF;
    border-radius: 29px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

/* Círculo con cara feliz */
.popup-circle-face {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    z-index: 5;
}

.popup-bg-circle {
    width: 100%;
    height: 100%;
    background: #17B5E7;
    border-radius: 50%;
}

.popup-ico-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.happy-face-icon {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1); /* Hace el ícono blanco */
}

/* Contenido del popup */
.popup-content {
    position: absolute;
    top: 114px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 40px;
}

.popup-title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 26px;
}

.popup-description {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 16px;
    text-align: center;
}

/* Botón del popup */
.popup-button {
    background: #61388D;
    border: none;
    border-radius: 15px;
    width: 140px;
    height: 41px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.popup-button:hover {
    background: #4F2A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animación del popup */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive para el popup */
@media (max-width: 375px) {
    .popup-card {
        width: calc(100vw - 30px);
        margin: 0 15px;
    }
    
    .popup-content {
        padding: 0 30px;
    }
    
    .popup-title {
        font-size: 32px;
    }
    
    .popup-description {
        font-size: 15px;
    }
}

/* ========== ESTILOS PARA EL MODAL DE INFORMACIÓN LEGAL ========== */

/* Overlay del modal legal */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 62, 93, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Card del modal legal */
.legal-modal-card {
    position: relative;
    width: 344px;
    height: 450px;
    max-width: 90vw;
    animation: legalModalSlideIn 0.5s ease-out;
}

.legal-modal-bg {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 405px;
    background: #FFFFFF;
    border-radius: 29px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

/* Círculo con campana del modal legal */
.legal-modal-circle-bell {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    z-index: 5;
}

.legal-modal-bg-circle {
    width: 100%;
    height: 100%;
    background: #17B5E7;
    border-radius: 50%;
}

.legal-modal-ico-bell {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-bell-icon {
    width: 39px;
    height: 40px;
    filter: brightness(0) invert(1); /* Hace el ícono blanco */
}

/* Contenido del modal legal */
.legal-modal-content {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 35px;
}

.legal-modal-title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 20px;
}

.legal-modal-description {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 15px;
    text-align: left;
}

.legal-modal-description-bold {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 25px;
    text-align: left;
}

/* Botón del modal legal */
.legal-modal-button {
    background: #61388D;
    border: none;
    border-radius: 15px;
    width: 138px;
    height: 41px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.legal-modal-button:hover {
    background: #4F2A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.legal-modal-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animación del modal legal */
@keyframes legalModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive para el modal legal */
@media (max-width: 375px) {
    .legal-modal-card {
        width: calc(100vw - 30px);
        margin: 0 15px;
    }
    
    .legal-modal-content {
        padding: 0 25px;
    }
    
    .legal-modal-title {
        font-size: 20px;
    }
    
    .legal-modal-description,
    .legal-modal-description-bold {
        font-size: 13px;
    }
}

/* ========== ESTILOS PARA EL POPUP DE FORMULARIO DE REGISTRO ========== */

/* Overlay del popup de formulario */
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 62, 93, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Card del popup de formulario */
.form-popup-card {
    position: relative;
    width: 344px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: formPopupSlideIn 0.5s ease-out;
}

.form-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 29px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

/* Contenido del popup de formulario */
.form-popup-content {
    position: relative;
    width: 100%;
    padding: 40px 35px 35px;
    z-index: 5;
}

.form-popup-title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #0A3B59;
    margin-bottom: 30px;
    text-align: center;
}

/* Estilos del formulario */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input {
    width: 100%;
    height: 32px;
    padding: 0 20px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A3B59;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #17B5E7;
}

.form-input::placeholder {
    color: #999999;
    font-weight: 300;
}

/* Input de archivo personalizado */
.file-input-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    background: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.file-input-label:hover {
    border-color: #17B5E7;
}

.file-input-text {
    flex: 1;
}

.file-input-icon {
    font-size: 18px;
    margin-left: 10px;
}

/* Checkbox personalizado */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #17B5E7;
}

.checkbox-label {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #0A3B59;
    cursor: pointer;
    flex: 1;
}

/* Botón de envío */
.form-submit-button {
    background: #61388D;
    border: none;
    border-radius: 15px;
    width: 140px;
    height: 50px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    display: block;
}

.form-submit-button:hover {
    background: #4F2A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animación del popup de formulario */
@keyframes formPopupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive para el popup de formulario */
@media (max-width: 375px) {
    .form-popup-card {
        width: calc(100vw - 30px);
        margin: 0 15px;
        height: auto;
        max-height: 85vh;
    }
    
    .form-popup-content {
        padding: 30px 25px 25px;
    }
    
    .form-popup-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .registration-form {
        gap: 15px;
    }
    
    .form-input,
    .file-input-label {
        height: 45px;
        font-size: 15px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .form-submit-button {
        height: 45px;
        font-size: 15px;
    }
}

/* ========== ESTILOS PARA LA PÁGINA DE CONFIRMACIÓN ========== */

/* Contenido de confirmación */
.confirmation-content {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 4;
    padding: 0 27px;
}

.confirmation-title {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #FFFFFF;
    margin-bottom: 10px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-subtitle {
    font-family: 'FSAlbert', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}

/* Imagen de confirmación */
.confirmation-image {
    width: 100%;
    margin-bottom: 30px;
}

.confirmation-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 334px;
}

.confirmation-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 334px;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 300px;
}


/* Botones de confirmación */
.confirmation-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.btn-catalog {
    background: #61388D;
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 50px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
}

.btn-catalog:hover {
    background: #4F2A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-catalog:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-text {
    flex: 1;
    text-align: center;
}

.btn-icon {
    font-size: 16px;
    font-weight: bold;
}

.btn-back {
    background: #17B5E7;
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 50px;
    color: #FFFFFF;
    font-family: 'FSAlbert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.075;
    letter-spacing: -1.5%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #1399C7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-back:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animaciones para la confirmación */
.confirmation-content {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.confirmation-image {
    animation: fadeInScale 1s ease-out 0.6s both;
}

.confirmation-buttons {
    animation: fadeInScale 0.8s ease-out 0.9s both;
}

/* Responsive para la confirmación */
@media (max-width: 375px) {
    .confirmation-content {
        padding: 0 15px;
        top: 180px;
    }
    
    .confirmation-title {
        font-size: 26px;
        max-width: 320px;
    }
    
    .confirmation-subtitle {
        font-size: 16px;
    }
    
    .confirmation-buttons {
        max-width: 100%;
        gap: 12px;
        
    }
    
    .btn-catalog {
        height: 45px;
        font-size: 13px;
    }
    
    .btn-back {
        height: 45px;
        font-size: 15px;
    }
    
    .confirmation-img {
        max-height: 150px;
    }
}
