body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 1024px) {
    .desktop-fixed-height {
        height: 100vh;
        overflow: hidden;
    }
}

.custom-scroll::-webkit-scrollbar {
    width: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #e2e8f0;
    border-radius: 20px;
}
.custom-scroll:hover::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
}

.form-input {
    transition: all 0.2s ease;
}
.form-input:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15); 
    border-color: #3b82f6;
}

.active-tenant-card {
    box-shadow: 0 0 0 2px #3b82f6 !important;
    border-color: #3b82f6 !important;
    background-color: #eff6ff !important;
    z-index: 10;
}

/* Avatar Stage */
.avatar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem; 
    overflow: visible;
    flex-none;
}

#stage-avatar {
    width: 130px; 
    height: 130px;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.12));
}

@media (min-width: 1024px) {
    #stage-avatar {
        width: 160px; 
        height: 160px;
    }
}

.smooth-scroll {
    -webkit-overflow-scrolling: touch;
}

#privacy-modal {
    display: none;
    opacity: 0;
}

.form-section-title {
    @apply text-[10px] font-black text-blue-500 uppercase tracking-widest mb-4 flex items-center gap-2 border-b border-slate-100 pb-2;
}

.sticky-form-footer {
    background: white;
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin-top: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.label-required::after {
    content: " *";
    color: #ef4444;
}

.grecaptcha-badge { 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px 0 0 12px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
    bottom: 70px !important; /* Lo subimos para que no tape tu footer */
}