﻿/* === SecciÃƒÂ³n de Registro de 3 Pasos - Igual que QR === */
.registro-pasos-section {
    background: linear-gradient(135deg, #001a00 0%, #000000 50%, #001100 100%);
    position: relative;
    overflow: hidden;
}

.registro-pasos-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.badge-registro {
    background: linear-gradient(45deg, #00ff00, #40ff40);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.registro-title {
    color: #00ff00;
    font-weight: 700;
    font-size: 2.2rem; /* Ajustar tamaÃƒÂ±o de fuente para mÃƒÂ³viles */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.registro-subtitle {
    color: #ccc;
    font-size: 1rem; /* Ajustar tamaÃƒÂ±o de fuente para mÃƒÂ³viles */
    margin-bottom: 2rem;
}

.pasos-list {
    margin: 2rem 0;
}

.paso-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid #00ff00;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.paso-item:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateX(10px);
}

.paso-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff00, #40ff40);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.paso-content h5 {
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Ajustar tamaÃƒÂ±o de fuente para mÃƒÂ³viles */
}

.paso-content p {
    color: #bbb;
    margin: 0;
    line-height: 1.5;
}

.beneficios-rapidos {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    position: relative;
    z-index: 1;
}

.beneficios-title {
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.beneficio-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
}

.beneficio-item i {
    color: #00ff00;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.cta-buttons-registro {
    margin-top: 2rem;
    display: flex;
    justify-content: center; /* Centrar los botones por defecto */
    align-items: center;
    gap: 1rem;
}

.btn-registro-primary,
.btn-registro-secondary {
    width: auto; /* Ajustar ancho automÃƒÂ¡ticamente */
    min-width: 180px; /* Ancho mÃƒÂ­nimo para los botones */
    text-align: center;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    display: inline-flex; /* Usar inline-flex para que los iconos se alineen */
    align-items: center;
    justify-content: center;
    border-radius: 50px; /* Bordes redondeados */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-registro-primary {
    background: linear-gradient(45deg, #00ff00, #40ff40);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: flex; /* Asegurar flex para centrado */
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.btn-registro-primary:hover {
    background: linear-gradient(45deg, #40ff40, #60ff60);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 0, 0.4);
}

.btn-registro-secondary {
    background: transparent;
    color: #00ff00;
    font-weight: 600;
    border: 2px solid #00ff00;
    border-radius: 50px;
    text-decoration: none;
    display: flex; /* Asegurar flex para centrado */
    align-items: center;
    transition: all 0.3s ease;
}

.btn-registro-secondary:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-2px);
}

@media (min-width: 768px) { /* Para pantallas mÃƒÂ¡s grandes, ajustar posiciÃƒÂ³n */
    .cta-buttons-registro {
        flex-direction: row;
        justify-content: center; /* Centrar en escritorio */
        gap: 1.5rem;
    }
    .btn-registro-primary,
    .btn-registro-secondary {
        width: auto;
        max-width: none;
        font-size: 1rem; /* Ajustar tamaÃƒÂ±o de fuente para que coincida con el superior */
        padding: 0.8rem 2rem;
    }
}

/* Mockup del telÃƒÂ©fono para registro - Igual que QR */
.registro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup-registro {
    width: 240px; /* Reducir el ancho del mockup para mÃƒÂ³viles */
    height: 480px; /* Reducir la altura del mockup para mÃƒÂ³viles */
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup-registro::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen-registro {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.registro-demo {
    height: 100%;
    background: linear-gradient(135deg, #001100, #000000);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    color: #fff;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    font-weight: 700;
}

.step.active {
    background: #00ff00;
    color: #000;
}

.registro-form-demo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.field-label {
    color: #00ff00;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.field-value {
    color: #fff;
    font-weight: 600;
}

.selfie-demo {
    background: rgba(0, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #00ff00;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.selfie-demo i {
    font-size: 2rem;
    color: #00ff00;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #00ff00;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.success-message i {
    color: #00ff00;
    font-size: 1.5rem;
}

.success-message span {
    color: #00ff00;
    font-weight: 700;
}

/* Responsive para registro - Igual que QR */
@media (max-width: 767.98px) { /* Usar el mismo breakpoint que la secciÃƒÂ³n superior */
    .registro-title {
        font-size: 2rem;
    }
    
    .paso-item {
        flex-direction: column;
        text-align: center;
    }
    
    .paso-numero {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup-registro {
        width: 240px;
        height: 480px;
    }
    
    .cta-buttons-registro {
        flex-direction: column !important; /* Asegurar que los botones se apilen */
        gap: 1rem;
        align-items: center !important; /* Centrar los botones */
    }
    
    .btn-registro-primary,
    .btn-registro-secondary {
        width: 100% !important; /* Asegurar que ocupen todo el ancho */
        margin: 0 auto !important; /* Centrar los botones */
        font-size: 1rem; /* Ajustar tamaÃƒÂ±o de fuente para que coincida con el superior */
        padding: 0.8rem 2rem;
    }
}
